-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhedn.json
64 lines (63 loc) · 1.34 KB
/
hedn.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
{
"build" : {
"-D" : ["no-deprecation-warnings"],
"-lib" : [
"tink_core",
"stx_pico",
"stx_log_shim",
"stx_nano","stx_assert","stx_fp","stx_fn","stx_pkg","bake",
"pootle",
"console.hx"
],
"-cp" : ["src/main/haxe"],
"unit" : {
"--macro" : [
"include('stx.Log',true)",
"include('stx.log',true)"
],
"interp" : {
"--interp" : true
},
"javascript" : {
"--js" : "build/javascript/main/js"
},
"cpp" : {
"--cpp" : "dist/cpp/unit"
}
},
"main" : {
"-D" : ["stx.log.filter.show=false"],
"--main" : "Main",
"hashlink" : {
"--hl" : "build/test/hl/main.hl"
},
"neko" : {
"--neko" : "build/neko/main.n"
},
"interp" : {
"--interp" : true
}
},
"test" : {
"--debug" : true,
"-D" : ["verbose"],
"-L" : ["stx_test"],
"-cp" : "src/test/haxe",
"--main" : "stx.log.Test",
"interp" : {
"--interp" : true
}
},
"feat" : {
"macro_time" : {
"-D" : ["stx.log.filter.show=false"],
"-L" : ["stx_test"],
"-cp" : "src/test/haxe",
"--main" : "stx.log.feat.macro_time.Test",
"interp" : {
"--interp" : true
}
}
}
}
}