-
Notifications
You must be signed in to change notification settings - Fork 7
/
Kconfig.gui
78 lines (58 loc) · 2 KB
/
Kconfig.gui
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
menu "HoneyGUI Framework Config"
menuconfig REALTEK_BUILD_GUI
bool "Enalbe RealGUI"
default n
if REALTEK_BUILD_GUI
config REALTEK_BUILD_GUI_OS_HEAP
bool "Enable OS Heap"
default n
config REALTEK_BUILD_GUI_FONT_STB
bool "Enable STB FONT"
default n
config REALTEK_BUILD_GUI_FONT_FREETYPE
bool "Enable FreeTYPE FONT"
default n
config REALTEK_BUILD_GUI_FONT_RTK_MEM
bool "Enable RTK MEM FONT"
default n
config REALTEK_BUILD_GUI_FONT_TTF_SVG
bool "Enable TTF SVG FONT"
default n
config REALTEK_BUILD_VG_LITE
bool "Enable VG LITE GPU acc"
default n
config REALTEK_BUILD_PPE
bool "Enable PPE ACC"
default n
config REALTEK_NANOVG_HW_VGLITE
bool "Enable NANOVG GPU MODE"
default n
config REALTEK_BUILD_SCRIPT_AS_A_APP
bool "Enable SaaA"
default n
config REALTEK_BUILD_PAINTER_ENGINE
bool "Enable Painter engine"
default n
choice
prompt "select gui demo"
default REALTEK_BUILD_GUI_448_368_DEMO
config REALTEK_BUILD_GUI_448_368_DEMO
bool "Enable 448_368_DEMO"
config REALTEK_BUILD_GUI_DEMO
bool "Enable Simple GUI_DEMO"
config REALTEK_BUILD_GUI_320_384_DEMO
bool "Enable 320_384_DEMO"
endchoice
endif
menuconfig REALTEK_BUILD_LVGL_GUI
bool "Enalbe LVGL"
default n
if REALTEK_BUILD_LVGL_GUI
config REALTEK_BUILD_LVGL_EXAMPLES
bool "Enable lvgl"
default n
config REALTEK_BUILD_LVGL_EXAMPLES
bool "Enable OS Heap"
default n
endif
endmenu