-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhedn.json
46 lines (45 loc) · 953 Bytes
/
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
{
"build" : {
"-D" : "no-deprecation-warnings",
"-cp" : ["src/main/haxe"],
"-lib" : ["stx_fail","tink_core","stx_pico","stx_nano","stx_log","stx_fn","stx_assert"],
"unit" : {
"--macro" : [
"include('stx.equate',true)"
],
"interp" : {
"--interp" : true
},
"hl" : {
"--hl" : "build/unit/hl/main.hl"
},
"cpp" : {
"--cpp" : "build/unit/cpp"
},
"cs" : {
"-D" : ["erase-generics"],
"--cs" : "build/unit/cs"
}
},
"main" : {
"--main" : "Main",
"interp" : {
"--interp" : true
}
},
"test" : {
"-cp" : "src/test/haxe",
"--main" : "stx.equate.Test",
"interp" : {
"--interp" : true
},
"cpp" : {
"--cpp" : "build/cpp"
}
}
},
"test" : [],
"run" : {
"x" : ["speeak" , "helloooo"]
}
}