-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
54 lines (53 loc) · 1.45 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
{
"name": "dgraphics",
"description": "",
"copyright": "Copyright © 2014, Joseph Emmons",
"authors": ["Joseph Emmons"],
"dependencies":
{
"derelict-glfw3": "==1.1.0",
"derelict-gl3": "==1.0.18",
"derelict-fi": "==1.9.0",
"derelict-ft": "==1.0.2",
"derelict-assimp3": "==1.0.1",
"derelict-ode": "==1.1.2"
},
"configurations": [
{
"name": "Editor_debug",
"targetType": "executable",
"versions": ["DerelictODE_Single", "tofu_EnableEditor"],
"buildOptions" : ["unittests", "debugMode", "debugInfo"]
},
{
"name": "Editor_release",
"targetType": "executable",
"versions": ["DerelictODE_Single", "tofu_EnableEditor"],
"buildOptions" : ["releaseMode", "optimize", "inline", "noBoundsCheck"]
},
{
"name": "Engine_debug",
"targetType": "executable",
"versions": ["DerelictODE_Single"],
"buildOptions" : ["unittests", "debugMode", "debugInfo"]
},
{
"name": "Engine_release",
"targetType": "executable",
"versions": ["DerelictODE_Single"],
"buildOptions" : ["releaseMode", "optimize", "inline", "noBoundsCheck"]
},
{
"name": "Engine_release_profile",
"targetType": "executable",
"versions": ["DerelictODE_Single"],
"buildOptions" : ["releaseMode", "optimize", "inline", "noBoundsCheck", "profile"]
},
{
"name": "TestGUI_debug",
"targetType": "executable",
"versions": ["DerelictODE_Single", "tofu_TestGUI"],
"buildOptions" : ["unittests", "debugMode", "debugInfo"]
}
]
}