-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdub.json
More file actions
53 lines (53 loc) · 843 Bytes
/
dub.json
File metadata and controls
53 lines (53 loc) · 843 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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "ldcup",
"version": "1.1.8",
"description": "Download and manage D compiler [ldc2].",
"license": "Apache-2.0",
"targetPath": "bin",
"authors": [
"Matheus Catarino França"
],
"dependencies": {
"requests": "~>2.2.0"
},
"dflags": [
"-preview=dip1000",
"-preview=dip1008",
"-preview=rvaluerefparam",
"-preview=in",
"-preview=systemVariables"
],
"dflags-ldc": [
"-link-defaultlib-shared=false"
],
"buildTypes": {
"debug": {
"buildOptions": [
"debugMode",
"debugInfo",
"debugInfoC"
]
},
"release": {
"buildOptions": [
"optimize",
"inline"
]
},
"release-debug": {
"buildOptions": [
"optimize",
"inline",
"debugInfo",
"debugInfoC"
]
},
"release-nobounds": {
"buildOptions": [
"optimize",
"inline",
"noBoundsCheck"
]
}
}
}