From 1d12dc51609ede84415556d4d9dc1f15d83f1f71 Mon Sep 17 00:00:00 2001 From: GW_MC <72297530+GWMCwing@users.noreply.github.com> Date: Mon, 19 Jan 2026 20:40:07 +0800 Subject: [PATCH] feat: add esp_wifi to required components in CMakeLists.txt --- main/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt index 49c53c4..086d4d6 100644 --- a/main/CMakeLists.txt +++ b/main/CMakeLists.txt @@ -1,4 +1,4 @@ -set(requires esp-tls spi_flash nvs_flash esp_event esp_netif esp_http_client) +set(requires esp-tls spi_flash nvs_flash esp_event esp_netif esp_http_client esp_wifi) file(GLOB SRCS "main.cpp" "*.cpp" "*.c" "**/*.cpp" "**/*.c") idf_component_register(SRCS ${SRCS}