1if LVGL
2
3config LV_CONF_SKIP
4	default n
5
6config APP_LINK_WITH_LVGL
7	bool "Link 'app' with LVGL"
8	default y
9	help
10	  Add LVGL header files to the 'app' include path. It may be
11	  disabled if the include paths for LVGL are causing aliasing
12	  issues for 'app'.
13
14config LV_Z_USE_FILESYSTEM
15	bool "Enable file system"
16	depends on FILE_SYSTEM
17	default y if FILE_SYSTEM
18	help
19	  Enable LittlevGL file system
20
21rsource "../Kconfig"
22rsource "Kconfig.memory"
23rsource "Kconfig.input"
24
25endif
26