-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdub.json
More file actions
29 lines (29 loc) · 829 Bytes
/
dub.json
File metadata and controls
29 lines (29 loc) · 829 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
{
"name": "harpy",
"description": "The Harpy",
"targetType": "executable",
"targetName": "harpy",
"license": "Apache-2.0",
"copyright": "Copyright © 2026, Fernando Dev",
"authors": [
"Fernando Dev"
],
"dflags": ["-L/usr/local/lib/libmir.a", "-L-lm", "-L-ldl", "-L-lpthread"],
"buildTypes": {
"debug": {
"dflags-dmd": ["-g", "-debug"],
"dflags-ldc": ["-g", "-d-debug", "-O0"],
"dflags-gdc": ["-g", "-fdebug", "-O0"]
},
"release": {
"dflags-dmd": ["-O", "-release", "-inline"],
"dflags-ldc": ["-O2", "-release", "-enable-inlining", "-flto=full"],
"dflags-gdc": ["-O2", "-frelease", "-finline-functions", "-flto"]
},
"release-size": {
"dflags-dmd": ["-O", "-release", "-inline"],
"dflags-ldc": ["-Oz", "-release", "-flto=full"],
"dflags-gdc": ["-Os", "-frelease", "-flto"]
}
}
}