-
Notifications
You must be signed in to change notification settings - Fork 1
/
dub.json
74 lines (74 loc) · 2.05 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "riphobos",
"description": "Fork of the D Standard Library",
"copyright": "Copyright © 1999-2022, The D Language Foundation; Copyright \u00a9 2022, The D Language Epslon Community",
"importPaths": [ "source" ],
"sourcePaths": [ "source" ],
"libs-posix": [
"z",
"curl",
"dl"
],
"license": "BSL-1.0",
"targetPath": "generated",
"targetType": "library",
"authors": [ "DLang Community" ],
"dflags": [ "-preview=dip1000", "-preview=dtorfields", "-preview=fieldwise", "-checkaction=context" ],
"buildRequirements": [ "disallowDeprecations" ],
"buildOptions": [ "warningsAsErrors", "deprecationErrors"],
"configurations": [
{ "name": "default" },
{
"name": "static",
"targetType": "staticLibrary"
},
{
"name": "shared",
"targetType": "dynamicLibrary"
},
{
"name": "unittest",
"versions": [ "RIPStdUnittest" ],
"buildOptions": ["unittests"],
"dflags": [ "-unittest" ]
},
{
"name": "unittest-cov",
"versions": [ "RIPStdUnittest" ],
"buildOptions": ["unittests", "coverage"]
},
{
"name": "unittest-threaded",
"versions": [ "RIPStdUnittest" ],
"dependencies": {
"silly": "~>1.2.0-dev.1"
},
"buildOptions": ["unittests", "lowmem"],
"buildRequirements": ["silenceDeprecations"]
},
{
"name": "unittest-cov-threaded",
"versions": [ "RIPStdUnittest" ],
"dependencies": {
"silly": "~>1.2.0-dev.1"
},
"buildOptions": ["unittests", "coverage", "lowmem"],
"buildRequirements": ["silenceDeprecations"]
}
],
"buildTypes": {
"debug": {
"buildOptions": [ "debugMode", "debugInfo" ]
},
"release": {
"buildOptions": [ "releaseMode", "optimize", "noBoundsCheck" ]
},
"release-debug": {
"buildOptions": [ "releaseMode", "optimize", "noBoundsCheck", "debugInfo" ]
},
"release-inline": {
"buildOptions": [ "releaseMode", "optimize", "inline", "noBoundsCheck" ],
"versions": [ "RIPStd_inline" ]
}
}
}