-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
53 lines (53 loc) · 1.23 KB
/
dub.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
{
"name": "valhalla_ecs",
"description": "A simple, easy-to-use yet robust ecs lib in D",
"importPaths": ["source"],
"sourcePaths": ["source"],
"targetPath": "bin",
"license": "MIT",
"targetType": "library",
"dependencies": {
"vsignal": "~>0.1.0"
},
"configurations": [
{
"name": "default"
},
{
"name": "unittest",
"targetType": "autodetect",
"dependencies": {
"aurorafw:unit": "0.0.1-alpha.4"
},
"versions": ["vecs_unittest"],
"dflags-dmd": ["-check=in=on"],
"dflags-ldc": ["--enable-preconditions=1"],
"buildOptions": ["unittests"]
},
{
"name": "unittest-cov",
"targetType": "autodetect",
"dependencies": {
"aurorafw:unit": "0.0.1-alpha.4"
},
"versions": ["vecs_unittest"],
"dflags-dmd": ["-check=in=on"],
"dflags-ldc": ["--enable-preconditions=1"],
"buildOptions": ["unittests", "coverage"]
}
],
"buildTypes": {
"debug": {
"buildOptions": [ "debugMode", "debugInfo" ]
},
"release": {
"buildOptions": [ "releaseMode", "optimize", "noBoundsCheck" ]
},
"release-debug": {
"buildOptions": [ "releaseMode", "optimize", "noBoundsCheck", "debugInfo" ]
},
"release-inline": {
"buildOptions": [ "releaseMode", "optimize", "inline", "noBoundsCheck" ]
}
}
}