13 lines
204 B
CMake
Executable File
13 lines
204 B
CMake
Executable File
set(incs .)
|
|
set(srcs
|
|
app_main.c
|
|
)
|
|
|
|
if (CONFIG_OVERRIDE_FLASH_PARTITION)
|
|
list(APPEND srcs
|
|
vendor_flash.c
|
|
)
|
|
endif()
|
|
|
|
armino_component_register(SRCS "${srcs}" INCLUDE_DIRS "${incs}")
|