16 lines
304 B
CMake
16 lines
304 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 bt media_service lwip_intf_v2_1 multimedia )
|
||
|
armino_component_register(
|
||
|
SRCS "${srcs}"
|
||
|
INCLUDE_DIRS "${incs}"
|
||
|
PRIV_REQUIRES "${priv_req}" wifi_transfer
|
||
|
)
|