-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
65 lines (62 loc) · 1.51 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
{
"name": "spectral-robot-task-force",
"description": "A turn-based strategy game built with the Dash engine.",
"copyright": "Copyright 2015, Circular Studios",
"authors": [
"Daniel Jost",
"Jayson Fitch",
"Shivam Rawal",
"Derrick Hunt",
"Brenna Coleman",
"Mclean Oshiokpekhai",
"Nicholas Cote",
"Tristan Meere",
"Tyler Wozniak",
"Sean Brennan",
"Colden Cullen",
"Gwendolyn Hart",
"Jimmy Detwiler"
],
"dependencies": {
"dash": "==0.12.0-beta1"
},
"sourcePaths": [
"Config/",
"Materials/",
"Objects/",
"Prefabs/",
"Scripts/",
"UI"
],
"importPaths": [ "Scripts/" ],
"targetType": "executable",
"targetPath": "Binaries",
"workingDirectory": "Binaries",
"stringImportPaths": [ "./" ],
"versions": [ "DashUseSDL2" ],
"lflags-linux" : [ "./libawesomium-1.6.5.so" ],
"libs-windows": [
"Awesomium",
"gdi32", "ole32", "kernel32",
"user32", "comctl32", "comdlg32"
],
"buildTypes": {
"release": {
"versions": [ "EmbedContent" ],
"buildOptions": [ "releaseMode", "optimize", "inline" ],
"lflags-windows": [ "/EXETYPE:NT", "/SUBSYSTEM:WINDOWS" ]
}
},
"subPackages": [
{
"name": "server",
"importPaths": [ "Scripts/" ],
"sourcePaths": [ "Scripts/network" ],
"mainSourceFile": "Scripts/network/server.d",
"targetType": "executable",
"targetPath": "Binaries",
"workingDirectory": "Binaries",
"versions": [ "Server", "VibeCustomMain" ]
}
]
}