2024-07-31 15:36:57 -04:00
|
|
|
set(REQUIRES "")
|
2024-07-31 15:51:12 -04:00
|
|
|
set(SRCS "src/configulator.c")
|
2024-07-31 15:36:57 -04:00
|
|
|
|
|
|
|
if(${ESP_PLATFORM})
|
|
|
|
list(APPEND REQUIRES nvs_flash)
|
2024-07-31 15:51:12 -04:00
|
|
|
list(APPEND SRCS "src/cfglr_nvs.c")
|
2024-07-31 15:36:57 -04:00
|
|
|
endif()
|
|
|
|
|
|
|
|
idf_component_register(
|
2024-07-31 15:51:12 -04:00
|
|
|
SRCS ${SRCS}
|
2024-07-31 15:36:57 -04:00
|
|
|
INCLUDE_DIRS "include"
|
|
|
|
# if platform esp...
|
|
|
|
REQUIRES ${REQUIRES}
|
|
|
|
)
|