-
Notifications
You must be signed in to change notification settings - Fork 2
/
dub.json
46 lines (44 loc) · 944 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
{
"name": "sample-dash-game",
"description": "A sample D game built with Dash.",
"copyright": "2014",
"license": "MIT",
"authors": [
"Colden Cullen",
"Brandon Littell",
"Eric Christenson",
"Tyler Wozniak",
"Sean Brennan",
"Timothy Reynolds"
],
"dependencies": {
"dash": "~master"
},
"sourcePaths": [
"Scripts/",
"Config/",
"Materials/",
"Objects/",
"Prefabs/",
"UI/"
],
"importPaths": [ "Scripts/" ],
"targetType": "executable",
"targetPath": "Binaries",
"versions": [ "DashUseSDL2" ],
"workingDirectory": "Binaries",
"lflags-linux" : [ "./libawesomium-1.6.5.so" ],
"libs-windows": [
"Awesomium",
"gdi32", "ole32", "kernel32",
"user32", "comctl32", "comdlg32"
],
"stringImportPaths": [ "./" ],
"buildTypes": {
"release": {
"versions": [ "EmbedContent" ],
"buildOptions": [ "releaseMode", "optimize", "inline" ],
"lflags-windows": [ "/EXETYPE:NT", "/SUBSYSTEM:WINDOWS" ]
}
}
}