From 21df64f4a95b582711021dd34ddc02999e674ee0 Mon Sep 17 00:00:00 2001 From: Tomas Rezucha Date: Mon, 22 Jan 2024 21:51:37 +0800 Subject: [PATCH] fix(examples): Make esp_eth public dependency of protocol_examples_comon --- .../common_components/protocol_examples_common/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/common_components/protocol_examples_common/CMakeLists.txt b/examples/common_components/protocol_examples_common/CMakeLists.txt index e2470c7efa..d8bccb1e99 100644 --- a/examples/common_components/protocol_examples_common/CMakeLists.txt +++ b/examples/common_components/protocol_examples_common/CMakeLists.txt @@ -36,7 +36,7 @@ if(CONFIG_EXAMPLE_PROVIDE_WIFI_CONSOLE_CMD) endif() if(CONFIG_EXAMPLE_CONNECT_ETHERNET) - idf_component_optional_requires(PRIVATE esp_eth) + idf_component_optional_requires(PUBLIC esp_eth) endif() if(CONFIG_EXAMPLE_CONNECT_PPP)