16 lines
228 B
CMake
16 lines
228 B
CMake
|
set(incs .
|
||
|
)
|
||
|
set(srcs
|
||
|
armino_main.c
|
||
|
)
|
||
|
|
||
|
if (CONFIG_OVERRIDE_FLASH_PARTITION)
|
||
|
list(APPEND srcs
|
||
|
vendor_flash.c
|
||
|
)
|
||
|
endif()
|
||
|
|
||
|
armino_component_register(SRCS "${srcs}" INCLUDE_DIRS "${incs}" media_service)
|
||
|
|
||
|
|