-
Notifications
You must be signed in to change notification settings - Fork 3
/
dub.json
78 lines (78 loc) · 1.82 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"authors": [
"Kenta Cho",
"Remi Gillig"
],
"copyright": "Copyright © 2004 - Kenta Cho, 2020 - Remi Gillig",
"description": "Torus Trooper (Reboot)",
"license": "BSD 2-clause",
"name": "tt",
"targetPath": "dist",
"targetType": "executable",
"workingDirectory": "dist",
"stringImportPaths": ["dist"],
"configurations": [
{
"name": "wasm_debug",
"targetPath": "web",
"sourceFiles": [
"src/**.d"
],
"dependencies": {"runtime": {"path": "runtime"}},
"dflags": ["-i=.", "-i=std"],
"versions": [
"WASM",
"GL_Batching",
"InputBackendWASM"
]
},
{
"name": "wasm",
"targetPath": "web",
"sourceFiles": [
"src/**.d"
],
"dependencies": {"runtime": {"path": "runtime"}},
"dflags": ["-i=.", "-i=std", "-L=-allow-undefined"],
"versions": [
"WASM",
"GL_Batching",
"InputBackendWASM"
]
},
{
"name": "win32",
"platforms": ["windows-x86"],
"sourceFiles": [
"src/**.d",
"resource/tt.res"
],
"importPaths": [
"lib"
],
"copyFiles": [
"lib/SDL2-2.0.12/lib/x86/SDL2.dll",
"lib/SDL2-2.0.12/README-SDL.txt",
"lib/SDL2_mixer-2.0.4/lib/x86/SDL2_mixer.dll",
"lib/SDL2_mixer-2.0.4/lib/x86/libvorbis-0.dll",
"lib/SDL2_mixer-2.0.4/lib/x86/libvorbisfile-3.dll",
"lib/SDL2_mixer-2.0.4/lib/x86/libogg-0.dll"
],
"dependencies": {
"bindbc-opengl": "~>0.13.0",
"bindbc-sdl": "~>0.19.0"
},
"versions": [
"BindBC",
"GL_32",
"GL_Batching",
"SDL_Mixer",
"InputBackendSDL"
],
"subConfigurations": {
"bindbc-opengl": "dynamicBC",
"bindbc-sdl": "dynamicBC"
}
}
]
}