From 66adf7920fca97fdd80ce3de4524db7c5d71b884 Mon Sep 17 00:00:00 2001 From: Jason Hsu Date: Sat, 19 Apr 2025 23:09:37 +0800 Subject: [PATCH] [Fix] Add 'esp_netif' as requirements in CMakeLists --- components/esp_local_ctrl/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_local_ctrl/CMakeLists.txt b/components/esp_local_ctrl/CMakeLists.txt index 8b0e2c6f5a..298b46e9b6 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 protocomm esp_https_server + REQUIRES esp_netif protocomm esp_https_server PRIV_REQUIRES protobuf-c) idf_component_optional_requires(PRIVATE espressif__mdns mdns)