17 lines
245 B
CMake
17 lines
245 B
CMake
|
set(incs .)
|
||
|
set(srcs app_main.c)
|
||
|
|
||
|
set(priv_req media_service)
|
||
|
|
||
|
if (CONFIG_OVERRIDE_FLASH_PARTITION)
|
||
|
list(APPEND srcs
|
||
|
vendor_flash.c
|
||
|
)
|
||
|
endif()
|
||
|
|
||
|
armino_component_register(
|
||
|
SRCS "${srcs}"
|
||
|
INCLUDE_DIRS "${incs}"
|
||
|
PRIV_REQUIRES "${priv_req}"
|
||
|
)
|