From 384cda988abe1317abbd2f2a877302c05aae9dd5 Mon Sep 17 00:00:00 2001 From: "hrushikesh.bhosale" Date: Wed, 7 May 2025 15:07:37 +0530 Subject: [PATCH] fix(esp_local_ctrl): Fixed esp_netif dependency in esp_local_ctrl component Moved the esp_netif from esp_local_ctrl CMakelists.txt's REQUIRES to PRIV_REQUIRES --- components/esp_local_ctrl/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/esp_local_ctrl/CMakeLists.txt b/components/esp_local_ctrl/CMakeLists.txt index 298b46e9b6..cf0fe50807 100644 --- a/components/esp_local_ctrl/CMakeLists.txt +++ b/components/esp_local_ctrl/CMakeLists.txt @@ -23,7 +23,7 @@ list(APPEND srcs idf_component_register(SRCS "${srcs}" INCLUDE_DIRS "${include_dirs}" PRIV_INCLUDE_DIRS "${priv_include_dirs}" - REQUIRES esp_netif protocomm esp_https_server - PRIV_REQUIRES protobuf-c) + REQUIRES protocomm esp_https_server + PRIV_REQUIRES protobuf-c esp_netif) idf_component_optional_requires(PRIVATE espressif__mdns mdns)