6 lines
174 B
CMake
6 lines
174 B
CMake
set(APP_DIR app)
|
|
file(GLOB_RECURSE APP_SOURCES ${APP_DIR}/*.c)
|
|
|
|
idf_component_register(SRCS "app_main.c" ${APP_SOURCES}
|
|
INCLUDE_DIRS "." ${APP_DIR})
|