MeshTalos/main/CMakeLists.txt
2025-12-03 20:59:51 +08:00

8 lines
511 B
CMake

idf_component_register(SRCS "controlplane.c" "lib/meshtalos.c" "lib/mongoose.c" "lib/storage.c" "network.c" "lib/log.c" "lib/publish.c" "mesh_if.c"
PRIV_REQUIRES esp_wifi esp_timer mpack lwip esp_partition nvs_flash joltwallet__littlefs esp-tls
INCLUDE_DIRS ".")
idf_component_set_property(main MINIMAL_BUILD ON)
target_compile_options(${COMPONENT_LIB} PRIVATE -std=gnu23)
target_compile_definitions(${COMPONENT_LIB} PUBLIC MG_ARCH=MG_ARCH_ESP32 PUBLIC MG_ENABLE_POSIX_FS=0 PUBLIC MG_OTA=MG_OTA_NONE)