Skip to content

Commit 384cda9

Browse files
committed
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
1 parent 66adf79 commit 384cda9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/esp_local_ctrl/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ list(APPEND srcs
2323
idf_component_register(SRCS "${srcs}"
2424
INCLUDE_DIRS "${include_dirs}"
2525
PRIV_INCLUDE_DIRS "${priv_include_dirs}"
26-
REQUIRES esp_netif protocomm esp_https_server
27-
PRIV_REQUIRES protobuf-c)
26+
REQUIRES protocomm esp_https_server
27+
PRIV_REQUIRES protobuf-c esp_netif)
2828

2929
idf_component_optional_requires(PRIVATE espressif__mdns mdns)

0 commit comments

Comments
 (0)