-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcbd.json
More file actions
40 lines (40 loc) · 875 Bytes
/
cbd.json
File metadata and controls
40 lines (40 loc) · 875 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
{
"build" : {
"-D" : ["stx.log.use","analyzer-optimize"],
"-cp" : "src/main/haxe",
"-lib" : ["signals","stig","stx_pico","stx_tap","stx_pkg","stx_nano"],
"unit" : {
"--macro" : [
"include('stx.log',true)"
],
"interp" : {
"--interp" : true
},
"nodejs" : {
"-lib" : "hxnodejs",
"--js" : "build/unit/nodejs/main.js"
}
},
"main" : {
"--main" : "Main",
"interp" : {
"--interp" : true
},
"nodejs" : {
"-lib" : "hxnodejs",
"--js" : "build/main/nodejs/main.js",
"run" : {
"--cmd" : "node build/main/nodejs/main.js"
}
}
},
"test" : {
"-lib" : ["stx_test"],
"-cp" : "src/test/haxe",
"--main" : "stx.log.Test",
"interp" : {
"--interp" : true
}
}
}
}