You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
281 B
CMake

set(UI_DIR ./ui)
file(GLOB_RECURSE UI_SRCS ${UI_DIR}/*.c)
set(APP_DIR ./app)
file(GLOB_RECURSE APP_SRCS ${APP_DIR}/*.c)
idf_component_register(
SRCS
"main.c"
${UI_SRCS}
${APP_SRCS}
INCLUDE_DIRS
"."
${UI_DIR}
${APP_DIR}
)