-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdub.json
58 lines (58 loc) · 1.9 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
{
"name": "deadcodesrc",
"description": "DeadCodeSrc - Code Editor",
"homepage": "http://foobar.dk",
"copyright": "Copyright © 2013, Jonas Drewsen",
"mainSourceFile" : "src/app.d",
"authors": [
"Jonas Drewsen"
],
"dependencies": {
"derelict-gl3": "1.0.10",
"derelict-sdl2": "2.0.0",
"derelict-ft": "1.0.0",
"libdparse": "0.2.1",
"msgpack-d": "~>0.9.5",
"libasync": "~>0.8.0",
"tharsis-prof": "0.5.4",
"poodinis": "~>6.2.0"
},
"dependencies-posix": {
"x11": "~>1.0.8"
},
"versions-windows": ["Unicode" ],
"lflags-windows": ["/NOCODEVIEW"],
"libs-posix": ["curl", "X11"],
"sourcePaths": [ "libdeadcode/src", "deadcodebase", "src", "extensions" ],
"buildRequirements": ["allowWarnings"],
"versions" : ["NoMain"],
"importPaths": [
"external/d-libraries", "."
],
"targetType": "executable",
"dflags" : ["-vcolumns"],
"targetName" : "deadcode",
"excludedSourceFiles" : [ "libdeadcode/src/app.d" ],
"sourceFiles-windows": [ "src/win.def", "src/win.res" ],
"buildTypes" : {
"debug" : {
"buildOptions" : [ "debugMode", "debugInfo" ]
},
"profile" : {
"buildOptions" : [ "profile", "optimize", "inline", "debugInfo" ],
"preBuildCommands-windows" : [ "tool.bat generate-resource-pack resources resources.pack",
"tool.bat generate-resource-pack binaries binaries.pack" ],
"versions" : ["portable", "release"]
},
"release" : {
"buildOptions" : [ "releaseMode", "optimize" ],
"preBuildCommands-windows" : [ "tool.bat generate-resource-pack resources resources.pack",
"tool.bat generate-resource-pack binaries binaries.pack" ],
"versions" : ["release"]
},
"rpcapioutput" : {
"buildOptions" : [ "debugMode", "debugInfo" ],
"versions" : [ "OutputRPCAPI" ]
}
}
}