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
This commit is contained in:
hrushikesh.bhosale
2025-05-07 15:07:37 +05:30
parent 66adf7920f
commit 384cda988a

View File

@ -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)