-
Notifications
You must be signed in to change notification settings - Fork 292
/
dub.json
53 lines (52 loc) · 1.35 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": "tilix",
"description": "A VTE based terminal emulator for Linux",
"copyright": "Copyright © 2016, Gerald Nunn",
"authors": ["Gerald Nunn"],
"mainSourceFile": "source/app.d",
"dflags-ldc": ["-disable-linker-strip-dead","-link-defaultlib-shared=false"],
"dependencies": {
"gtk-d:gtkd": {
"version": "3.10.0"
},
"gtk-d:vte": {
"version": "3.10.0"
}
},
"buildTypes": {
"release": {
},
"debug": {
"debugVersions": ["GC"],
"dflags": ["-g"]
},
"localize": {
"versions": ["Localize"]
},
"i686": {
"dflags": ["-m32", "-c"]
}
},
"configurations": [
{
"name": "default",
"targetType": "executable",
"libs-linux": ["X11"],
"versions": ["StdLoggerDisableTrace"]
},
{
"name": "trace",
"targetType": "executable",
"libs-linux": ["X11"],
"debugVersions": ["Destructors"]
},
{
"name": "dynamic",
"targetType": "executable",
"libs": ["gtkd-3"],
"libs-linux": ["X11"],
"lflags": ["-defaultlib=libgtkd-3.so"],
"versions": ["StdLoggerDisableTrace"]
}
]
}