repair the compiler error of lvgl

This commit is contained in:
Wang_Weigen 2022-01-11 17:51:44 +08:00
parent aa63e53cbc
commit 3ca98f520d
3 changed files with 4 additions and 9 deletions

View File

@ -4,21 +4,16 @@ ifeq ($(CONFIG_ADD_NUTTX_FETURES),y)
include $(APPDIR)/Make.defs
CSRCS += framework_init.c
include $(APPDIR)/Application.mk
ifeq ($(CONFIG_LIB_LV),y)
SRC_FILES += lv_init.c
SRC_DIR += lv_app
endif
ifeq ($(CONFIG_APPLICATION_OTA),y)
SRC_DIR += ota
endif
ifeq ($(CONFIG_ADD_XIUOS_FETURES),y)
SRC_DIR := general_functions app_test
SRC_FILES := main.c framework_init.c
ifeq ($(CONFIG_LIB_LV),y)
SRC_DIR += lv_app
endif
ifeq ($(CONFIG_APPLICATION_OTA),y)
SRC_DIR += ota

View File

@ -1,3 +1,3 @@
SRC_FILES := lv_demo.c lv_demo_calendar.c
SRC_FILES := lv_init.c lv_demo.c lv_demo_calendar.c
include $(KERNEL_ROOT)/compiler.mk