forked from gecko0307/dagon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
executable file
·39 lines (33 loc) · 883 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
{
"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"
],
"importPaths": ["src"],
"sourcePaths": ["src"],
"stringImportPaths": ["shaders", "data/__internal"],
"dependencies": {
"dlib": "~master",
"bindbc-opengl": "0.4.0",
"bindbc-sdl": "0.4.1",
"bindbc-ft": "0.0.1"
},
"versions": ["SDL_205", "GL_40"],
"buildRequirements":[
"allowWarnings"
],
"configurations": [
{
"name": "library",
"targetType": "library"
}
],
"copyFiles": ["data", "gamecontrollerdb.txt"],
"copyFiles-windows-x86" : ["lib/x86/*.dll"],
"copyFiles-windows-x86_64" : ["lib/x64/*.dll"]
}