From 4a9a3ef805e567939c6564f136f8de2b19b39f4f Mon Sep 17 00:00:00 2001 From: Erick Ahmed Date: Sat, 11 Oct 2025 23:46:23 +0200 Subject: [PATCH] Add ESP-IDF component configuration for main directory --- firmware/esp32/main/CMakeLists.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 firmware/esp32/main/CMakeLists.txt diff --git a/firmware/esp32/main/CMakeLists.txt b/firmware/esp32/main/CMakeLists.txt new file mode 100644 index 0000000..ed3b2e7 --- /dev/null +++ b/firmware/esp32/main/CMakeLists.txt @@ -0,0 +1,10 @@ +idf_component_register(SRCS "../source/main.cpp" + "../source/wifi.cpp" + INCLUDE_DIRS "../include" + REQUIRES esp_wifi + nvs_flash + esp_pm + esp_hw_support + esp_system + freertos + log)