-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
49 lines (47 loc) · 1023 Bytes
/
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
{
"name": "mango-engine",
"authors": [
"Mango-Engine Team"
],
"description": "A game engine written in D",
"copyright": "Copyright © 2016, Mango-Engine Team",
"license": "BSD 3-clause",
"configurations": [
{
"name": "openglSupport",
"targetType": "library",
"targetPath": "bin",
"dependencies": {
"mango-stl": "~master",
"derelict-glfw3": "~>3.1.0",
"derelict-gl3" : "~>1.0.18",
"derelict-fi": "~>2.0.3",
"gl3n" : "~>1.3.1",
"blocksound": "~>1.1.1-alpha2",
"consoled": "~>1.0.4"
},
"versions": [
"mango_GLBackend"
]
},
{
"name": "opengl_vulkanSupport",
"targetType": "library",
"targetPath": "bin",
"dependencies": {
"mango-stl": "~master",
"derelict-glfw3": "~>3.1.0",
"derelict-gl3" : "~>1.0.18",
"derelict-fi": "~>2.0.3",
"erupted": "~>1.4.3",
"gl3n" : "~>1.3.1",
"blocksound": "~>1.1.1-alpha2",
"consoled": "~>1.0.4"
},
"versions": [
"mango_GLBackend",
"mango_VKBackend",
]
}
]
}