forked from Moddable-OpenSource/moddable
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
40 lines (40 loc) · 811 Bytes
/
manifest.json
File metadata and controls
40 lines (40 loc) · 811 Bytes
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
{
"include": [
"$(MODDABLE)/examples/manifest_base.json",
"$(MODDABLE)/modules/drivers/ili9341/manifest.json",
"$(MODDABLE)/modules/drivers/xpt2046/manifest.json"
],
"modules": {
"*": [
"./main",
"$(MODULES)/files/preference/*"
],
"commodetto/parseRLE": "$(COMMODETTO)/commodettoParseRLE",
"commodetto/Bitmap": "$(COMMODETTO)/commodettoBitmap",
"commodetto/Poco": "$(COMMODETTO)/commodettoPoco",
"commodetto/cfe": "$(COMMODETTO)/cfeBMF",
"commodetto/*": "$(COMMODETTO)/commodettoPocoBlit"
},
"preload": [
"commodetto/*",
"preference"
],
"resources":{
"*-mask": [
"./assets/crosshair",
"./assets/success"
]
},
"defines": {
"xpt2046": {
"raw": true
}
},
"platforms": {
"esp": {
"modules": {
"*": "$(MODULES)/files/preference/esp/*"
}
}
}
}