-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdub.json
51 lines (51 loc) · 1.07 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
{
"authors": [
"Lispy Snake, Ltd."
],
"copyright": "Copyright © 2019-2020 Lispy Snake, Ltd.",
"dependencies": {
"bindbc-bgfx": {
"path": "external/bindbc-bgfx",
},
"bindbc-loader": {
"path": "external/bindbc-loader",
},
"bindbc-sdl": {
"path": "external/bindbc-sdl",
},
"intel-intrinsics": {
"path": "external/intel-intrinsics",
},
"gfm": {
"path": "external/gfm",
},
"serpent-ecs": {
"path": "external/serpent-ecs",
}
},
"description": "Serpent Core Game Framework",
"libs-posix": [
"SDL2", "SDL2_image",
"bgfxRelease", "bimgRelease", "bxRelease",
"stdc++", "GL", "x11",
],
"libs-windows": [
"SDL2", "SDL2_image",
"bgfxRelease", "bimgRelease", "bxRelease",
],
"lflags": ["-L../serpent-support/runtime/lib"],
"license": "ZLib",
"name": "serpent",
"subConfigurations": {
"bindbc-bgfx": "staticBC",
"bindbc-sdl": "staticBC"
},
"targetType": "library",
"versions": [
"SDL_Static",
"SDL_Image",
"SDL_205",
],
"preBuildCommands": ["ldc2 --run scripts/prepare-shaders.d"],
"stringImportPaths": ["built/shaders"],
}