You've already forked M5Stack_Linux_Libs
mirror of
https://github.com/m5stack/M5Stack_Linux_Libs.git
synced 2026-05-20 11:01:38 -07:00
27 lines
456 B
Plaintext
27 lines
456 B
Plaintext
menuconfig LVGL_COMPONENT_ENABLED
|
|
bool "Enable lvgl"
|
|
default n
|
|
|
|
if LVGL_COMPONENT_ENABLED
|
|
menu "lvgl version"
|
|
choice
|
|
prompt "choice lvgl version"
|
|
default LVGL_9_0_SRC
|
|
config LVGL_9_0_SRC
|
|
bool "enable lvgl9.0"
|
|
help
|
|
build by LVGL!
|
|
config LVGL_9_3_SRC
|
|
bool "enable lvgl9.3"
|
|
help
|
|
build by LVGL!
|
|
endchoice
|
|
|
|
endmenu
|
|
|
|
if LVGL_9_3_SRC
|
|
osource "${SDK_PATH}/components/lvgl_component/lvgl_9_3/Kconfig"
|
|
endif
|
|
|
|
endif
|