-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdub.json
More file actions
45 lines (45 loc) · 1.02 KB
/
dub.json
File metadata and controls
45 lines (45 loc) · 1.02 KB
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
{
"authors": [
"Fernando Dev",
"Italo Brito Brandão",
"Leonel Sanches da Silva"
],
"copyright": "Copyright © 2025, Fernando Dev",
"description": "Compilador Geral Delégua",
"license": "MIT",
"name": "cgd",
"targetType": "executable",
"dflags-ldc": ["-wi"],
"buildTypes": {
"debug": {
"dflags-dmd": ["-g", "-debug"],
"dflags-ldc": ["-g", "-O0", "-wi"],
"dflags-gdc": ["-g", "-O0"]
},
"release": {
"dflags-dmd": ["-O", "-release", "-inline"],
"dflags-ldc": ["-O2", "-release", "-enable-inlining", "-wi"],
"dflags-gdc": ["-O2", "-frelease"]
},
"release-fast": {
"dflags-dmd": [
"-O",
"-release",
"-inline",
"-boundscheck=off"
],
"dflags-ldc": [
"-O3",
"-release",
"-enable-inlining",
"-boundscheck=off",
"-wi"
],
"dflags-gdc": ["-O3", "-frelease", "-fbounds-check=off"]
},
"unittest": {
"dflags-ldc": ["-g", "-O0", "-unittest", "-wi"]
}
},
"buildRequirements": ["allowWarnings"]
}