forked from scro34/Bernstein
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compile.json
45 lines (45 loc) · 799 Bytes
/
compile.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
{
"$schema": "https://qooxdoo.org/schema/compile-1-0-0.json",
"targets": [
{
"type": "source",
"fonts": {
"local": true,
"fontTypes": [
"ttf"
]
},
"outputPath": "compiled/source",
"bundle": {
"include": [
"qx.*"
]
}
},
{
"type": "build",
"fonts": {
"local": true,
"fontTypes": [
"ttf"
]
},
"outputPath": "compiled/build"
}
],
"defaultTarget": "source",
"locales": [
"en"
],
"environment": {
"qx.icontheme": "Oxygen"
},
"applications": [
{
"class": "bernstein.demo.Application",
"theme": "bernstein.theme.Theme",
"name": "bernstein.demo",
"title": "Bernstein Demo"
}
]
}