mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-11-17 15:59:23 +01:00
15 lines
340 B
CMake
15 lines
340 B
CMake
|
|
|
||
|
|
file(GLOB_RECURSE srcs *.c)
|
||
|
|
|
||
|
|
set(includes "include")
|
||
|
|
|
||
|
|
# Add more required components you need here, separated by spaces
|
||
|
|
set(require_components at freertos nvs_flash)
|
||
|
|
|
||
|
|
idf_component_register(
|
||
|
|
SRCS ${srcs}
|
||
|
|
INCLUDE_DIRS ${includes}
|
||
|
|
REQUIRES ${require_components})
|
||
|
|
|
||
|
|
idf_component_set_property(${COMPONENT_NAME} WHOLE_ARCHIVE TRUE)
|