-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdub.json
More file actions
39 lines (39 loc) · 1.56 KB
/
dub.json
File metadata and controls
39 lines (39 loc) · 1.56 KB
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" : "drossel",
"copyright": "© 2014 Anton Gushcha",
"description" : "Sandbox minecraft like multiplayer game, where you survive in single solar system with other players, build industry, space ship, space stations and fight!",
"license": "GPL-3.0",
"authors": ["Anton Gushcha (NCrashed) <ncrashed@gmail.com>"],
"dependencies" : {
"dlogg": "~master",
"derelict-glfw3": "~master",
"derelict-gl3": "~master"
},
"configurations": [
{
"name": "library",
"description": "Engine as library",
"targetType": "library",
"targetName": "drossel-engine",
"excludedSourceFiles": ["source/client/*", "source/server/*"]
},
{
"name": "client",
"description": "Game client, that is built with rendering subsystem, but also is able to handle server functions.",
"targetType": "executable",
"targetName": "drossel-client",
"mainSourceFile": "source/client/main.d",
"excludedSourceFiles": ["source/server/*"],
"copyFiles-windows-x86": ["deps/windows-x86/glfw3.dll"],
"copyFiles-windows-x86_64": ["deps/windows-x86_64/glfw3.dll"]
},
{
"name": "server",
"description": "Game server, that is built without rendering subsystem.",
"targetType": "executable",
"targetName": "drossel-server",
"mainSourceFile": "source/server/main.d",
"excludedSourceFiles": ["source/client/*"]
}
]
}