Files

27 lines
456 B
Plaintext
Raw Permalink Normal View History

2024-04-10 12:21:46 +08:00
menuconfig LVGL_COMPONENT_ENABLED
bool "Enable lvgl"
default n
2025-01-06 17:30:11 +08:00
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
2024-04-10 12:21:46 +08:00
2025-01-06 17:30:11 +08:00
endmenu
2024-04-10 12:21:46 +08:00
2025-01-06 17:30:11 +08:00
if LVGL_9_3_SRC
2025-01-06 18:00:32 +08:00
osource "${SDK_PATH}/components/lvgl_component/lvgl_9_3/Kconfig"
2025-01-06 17:30:11 +08:00
endif
2024-04-10 12:21:46 +08:00
2025-01-06 17:30:11 +08:00
endif