27 lines
414 B
CMake
27 lines
414 B
CMake
|
set(incs .)
|
||
|
|
||
|
set(srcs
|
||
|
widgets_main.c
|
||
|
)
|
||
|
|
||
|
if (CONFIG_LV_USE_DEMO_WIDGETS)
|
||
|
list(APPEND srcs
|
||
|
lv_demo_widgets.c
|
||
|
assets/img_clothes.c
|
||
|
assets/img_demo_widgets_avatar.c
|
||
|
assets/img_lvgl_logo.c
|
||
|
)
|
||
|
endif()
|
||
|
|
||
|
if (CONFIG_OVERRIDE_FLASH_PARTITION)
|
||
|
list(APPEND srcs
|
||
|
vendor_flash.c
|
||
|
)
|
||
|
endif()
|
||
|
|
||
|
armino_component_register(
|
||
|
SRCS "${srcs}"
|
||
|
INCLUDE_DIRS "${incs}"
|
||
|
PRIV_REQUIRES bk_init bk_cli multimedia lvgl media_service
|
||
|
)
|