This commit is contained in:
Wang_Weigen
2022-01-05 15:23:12 +08:00
parent 36f2ebbf95
commit 37c247f4d7
20 changed files with 360 additions and 126 deletions

View File

@@ -1,5 +1,4 @@
menu "lib"
choice
prompt "chose a kind of lib for app"
default APP_SELECT_NEWLIB
@@ -12,4 +11,5 @@ menu "lib"
endchoice
source "$APP_DIR/lib/cJSON/Kconfig"
source "$APP_DIR/lib/queue/Kconfig"
source "$APP_DIR/lib/lvgl/Kconfig"
endmenu

View File

@@ -1,9 +1,13 @@
SRC_DIR :=
# SRC_DIR := lvgl
ifeq ($(CONFIG_APP_SELECT_NEWLIB),y)
ifeq ($(CONFIG_SEPARATE_COMPILE),y)
SRC_DIR += app_newlib
endif
ifeq ($(CONFIG_SEPARATE_COMPILE),y)
SRC_DIR += app_newlib
endif
endif
ifeq ($(CONFIG_LIB_LV),y)
SRC_DIR += lvgl
endif

Submodule APP_Framework/lib/lvgl added at d38eb1e689