-
Notifications
You must be signed in to change notification settings - Fork 17
/
dub.json
78 lines (72 loc) · 2.05 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
{
"name": "lix",
"description": "Single-/multiplayer puzzle game, inspired by Lemmings",
"homepage": "https://www.lixgame.com",
"copyright": "public domain",
"authors": ["Simon Naarmann"],
"targetName": "lix",
"targetPath": "bin",
"workingDirectory": "./",
"dependencies": {
"allegro": ">=4.0.7",
"enumap": ">=0.4.2",
"derelict-enet": ">=2.0.0",
"optional": "~>1.3.0",
"sdlang-d": ">=0.10.6",
},
"libs-posix": [
"allegro_acodec-5",
"allegro_image-5",
"allegro_primitives-5",
"allegro_ttf-5",
],
"libs-windows": [
"allegro",
"allegro_acodec",
"allegro_audio",
"allegro_font",
"allegro_image",
"allegro_primitives",
"allegro_ttf",
],
"libs-windows-dmd": ["user32"],
"lflags-windows-x86-dmd": [
"-subsystem:windows",
"-entry:mainCRTStartup"
],
"lflags-windows-x86_64-dmd": [
"-subsystem:windows",
"-entry:mainCRTStartup"
],
"lflags-windows-ldc": [
"-subsystem:windows",
"-entry:wmainCRTStartup"
],
"lflags-windows-ldc2": [
"-subsystem:windows",
"-entry:wmainCRTStartup"
],
"sourceFiles-windows-x86": ["src\\icon\\win32.res"],
"sourceFiles-windows-x86_64": ["src\\icon\\win64.res"],
"versions": ["ALLEGRO_NO_PRAGMA_LIB"],
"buildRequirements": ["allowWarnings"],
"buildTypes": {
"debug": {
"buildOptions": ["debugMode", "debugInfo"],
},
"debugXDG": {
"versions": ["useXDGBaseDirs"],
"buildOptions": ["debugMode", "debugInfo"],
},
"releaseXDG": {
"versions": ["useXDGBaseDirs"],
"buildOptions": ["releaseMode", "optimize",
"inline", "noBoundsCheck"],
},
"profile": {
"versions": ["tharsisprofiling"],
"buildOptions": ["releaseMode", "optimize",
"inline", "noBoundsCheck"],
},
},
}