forked from lvgl/lv_port_linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
108 lines (108 loc) · 3.29 KB
/
manifest.json
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "LVGL on Linux",
"maintainer": "LVGL",
"hostOperatingsystem": [
"Linux"
],
"environment": [
"CMake",
"SDL",
"DRM",
"Linux"
],
"description": "Example project to use LVGL on top of Linux graphics stack. Currently supported backends are either legacy framebuffer (fbdev), modern DRM/KMS, or SDL2.",
"shortDescription": "CMake project for Linux devices supporting various display drivers.",
"urlToClone": "https://github.com/lvgl/lv_port_linux",
"logos": ["https://raw.githubusercontent.com/lvgl/project-creator/master/meta/images/linux/logo.svg"],
"branches": [
"release/v9.2"
],
"settings": [
{
"type": "dropdown",
"label": "Color Depth",
"options": [
{
"name": "16 (RGB565)",
"value": "16"
},
{
"name": "24 (RGB565)",
"value": "24"
},
{
"name": "32 (RGB565)",
"value": "32"
}
],
"actions": [
{
"toReplace": "#define LV_COLOR_DEPTH \\d+",
"newContent": "#define LV_COLOR_DEPTH {value}",
"filePath": "lv_conf.h"
}
]
},
{
"type": "dropdown",
"label": "Show performance monitor",
"options": [
{
"name": "Yes",
"value": "1",
"default": "true"
},
{
"name": "No",
"value": "0"
}
],
"actions": [
{
"toReplace": "#define LV_USE_PERF_MONITOR .*",
"newContent": "#define LV_USE_PERF_MONITOR {value}",
"filePath": "lv_conf.h"
}
]
},
{
"type": "dropdown",
"label": "Select display driver",
"options": [
{
"name": "Linux frame buffer device",
"value": "0",
"default": "true"
},
{
"name": "DRM",
"value": "1"
},
{
"name": "SDL",
"value": "2"
}
],
"actions": [
{
"ifValue": "0",
"toReplace": "#define LV_USE_LINUX_FBDEV +\\d+",
"newContent": "#define LV_USE_LINUX_FBDEV 1",
"filePath": "lv_conf.h"
},
{
"ifValue": "1",
"toReplace": "#define LV_USE_LINUX_DRM +\\d+",
"newContent": "#define LV_USE_LINUX_DRM 1",
"filePath": "lv_conf.h"
},
{
"ifValue": "2",
"toReplace": "#define LV_USE_SDL +\\d+",
"newContent": "#define LV_USE_SDL 1",
"filePath": "lv_conf.h"
}
]
}
]
}