forked from gecko0307/dagon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
executable file
·62 lines (53 loc) · 1.24 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
{
"name": "dagon",
"description": "3D game engine for D",
"homepage": "https://gecko0307.github.io/dagon",
"license": "BSL-1.0",
"authors": [
"Timur Gafarov",
"Rafał Ziemniewski",
"Björn Roberg",
"dayllenger",
"Mateusz Muszyński"
],
"importPaths": [
"src"
],
"sourcePaths": [
"src"
],
"stringImportPaths": ["data/__internal"],
"dependencies": {
"dlib": "~>1.3",
"bindbc-loader": "~>1.1",
"bindbc-opengl": "~>1.1",
"bindbc-sdl": "~>1.4",
},
"versions": [
"SDL_2014",
"GL_40",
"GL_KHR_debug"
],
"buildRequirements":[
"allowWarnings"
],
"configurations": [
{
"name": "library",
"targetType": "library"
}
],
"copyFiles": ["data", "gamecontrollerdb.txt"],
"copyFiles-windows-x86": ["lib/x86/*.dll"],
"copyFiles-windows-x86_64": ["lib/x64/*.dll"],
"subPackages": [
"extensions/ftfont",
"extensions/imgui",
"extensions/iqm",
"extensions/lua",
"extensions/newton",
"extensions/nuklear",
"extensions/stbi",
"init-exec"
]
}