configularor/CMakeLists.txt
2024-07-31 12:36:57 -07:00

12 lines
204 B
CMake

set(REQUIRES "")
if(${ESP_PLATFORM})
list(APPEND REQUIRES nvs_flash)
endif()
idf_component_register(
SRCS src/configulator.c
INCLUDE_DIRS "include"
# if platform esp...
REQUIRES ${REQUIRES}
)