-
Notifications
You must be signed in to change notification settings - Fork 1
/
vshaxe-build.json
55 lines (55 loc) · 960 Bytes
/
vshaxe-build.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
{
"mainTarget": "all",
"targets": [
{
"name": "all",
"composite": true,
"targetDependencies": [
"run-script",
"extension",
"schema"
],
"args": {
"debug": true
}
},
{
"name": "run-script",
"args": {
"classPaths": ["src"],
"haxelibs": ["hxargs", "json2object"],
"main": "vshaxeBuild.Main",
"output": {
"target": "neko",
"path": "run.n"
},
"debug": true
}
},
{
"name": "extension",
"args": {
"classPaths": ["src"],
"haxelibs": ["hxargs", "json2object", "hxnodejs", "vscode", "vshaxe"],
"output": {
"target": "js",
"path": "extension.js"
},
"debug": true,
"packageName": "vshaxeBuild.extension.Main"
}
},
{
"name": "schema",
"args": {
"classPaths": ["src"],
"haxelibs": ["json2object"],
"output": {
"target": "interp"
},
"debug": true,
"main": "vshaxeBuild.tools.SchemaGenerator"
}
}
]
}