19 lines
298 B
CMake
19 lines
298 B
CMake
|
set(incs .
|
||
|
include
|
||
|
)
|
||
|
|
||
|
set(srcs app_main.c)
|
||
|
|
||
|
if (CONFIG_OVERRIDE_FLASH_PARTITION)
|
||
|
list(APPEND srcs
|
||
|
vendor_flash.c
|
||
|
)
|
||
|
endif()
|
||
|
|
||
|
set(priv_req bk_init bk_cli multimedia media_service display_service)
|
||
|
armino_component_register(
|
||
|
SRCS "${srcs}"
|
||
|
INCLUDE_DIRS "${incs}"
|
||
|
PRIV_REQUIRES "${priv_req}"
|
||
|
)
|