-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdub.json
79 lines (76 loc) · 2.28 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "gameengine",
"description": "legendary physics and graphics engine write on D",
"authors": ["artemjackson", "HaraldZealot", "sanek95k"],
"homepage": "https://github.com/ZuzuStudio/GameEngine",
"copyright": "Copyright (c) 2014 Aliaksand Kachurka, Aliaksei Stankevich, Artsiom Stsepanishchau",
"license": "Apache-2.0",
"dependencies":
{
"derelict-gl3" : "~>1.0.13",
"derelict-glfw3" : "~>1.1.0",
"derelict-fi": "~>1.0.1",
"derelict-assimp3": "~master"
},
"configurations": [
{
"name": "library",
"targetType": "library",
"targetPath": "build/lib"
},
{
"name": "benchmarks",
"targetType": "executable",
"sourcePath": "applications/benchmarks",
"targetName": "simplebenchmark",
"targetPath": "build/benchmarks"
},
{
"name": "springphysics",
"targetType": "executable",
"sourcePath": "applications/springphysics",
"targetName": "springphysics",
"targetPath": "build/springphysics"
},
{
"name": "greensquare",
"targetType": "executable",
"sourcePath": "applications/graphicsTests/GreenSquare",
"targetName": "greensquare",
"targetPath": "build/graphicsTests/GreenSquare",
"workingDirectory": "build/graphicsTests/GreenSquare"
},
{
"name": "md2models",
"targetType": "executable",
"sourcePath": "applications/MD2Models",
"targetName": "md2models",
"targetPath": "build/MD2Models",
"workingDirectory": "build/MD2Models"
},
{
"name": "simplecollision",
"targetType": "executable",
"sourcePath": "applications/SimpleCollision",
"targetName": "simplecollision",
"targetPath": "build/SimpleCollision",
"workingDirectory": "build/SimpleCollision"
},
{
"name": "complexcollision",
"targetType": "executable",
"sourcePath": "applications/ComplexCollision",
"targetName": "complexcollision",
"targetPath": "build/ComplexCollision",
"workingDirectory": "build/ComplexCollision"
},
{
"name": "wedge",
"targetType": "executable",
"sourcePath": "applications/Wedge",
"targetName": "wedge",
"targetPath": "build/Wedge",
"workingDirectory": "build/Wedge"
}
]
}