-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
86 lines (86 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
79
80
81
82
83
84
85
86
{
"name": "EncoX",
"description": "Naronco open source 3D engine",
"authors": ["shirookad", "WebFreak001"],
"homepage": "https://github.com/Naronco/EncoXD",
"targetPath": "bin",
"targetType": "executable",
"license": "MIT",
"buildTypes":
{
"debug":
{
"buildOptions": ["debugMode", "debugInfo", "debugInfoC", "alwaysStackFrame", "stackStomping"]
},
"debug-profile":
{
"buildOptions": ["debugMode", "debugInfo", "debugInfoC", "profile", "alwaysStackFrame", "stackStomping"]
},
"release":
{
"buildOptions": ["releaseMode", "inline", "optimize"]
},
"docs":
{
"buildOptions": ["syntaxOnly"],
"dflags": ["-c", "-Dddocs"]
}
},
"configurations": [
{
"name": "Demo",
"targetType": "executable",
"sourcePaths": ["Demo/", "source/"],
"importPaths": ["Demo/", "source/"],
"targetName": "demo"
},
{
"name": "Transformations",
"targetType": "executable",
"sourcePaths": ["Examples/Transformations/", "source/"],
"importPaths": ["Examples/Transformations/", "source/"],
"targetName": "transformations"
},
{
"name": "Game",
"targetType": "executable",
"sourcePaths": ["Examples/Game/", "source/"],
"importPaths": ["Examples/Game/", "source/"],
"targetName": "game"
},
{
"name": "Packets",
"targetType": "executable",
"sourcePaths": ["Examples/Packets/", "source/"],
"importPaths": ["Examples/Packets/", "source/"],
"targetName": "packets"
},
{
"name": "InfiniteTerrain",
"targetType": "executable",
"sourcePaths": ["Examples/InfiniteTerrain/", "source/"],
"importPaths": ["Examples/InfiniteTerrain/", "source/"],
"targetName": "infinitegame"
},
{
"name": "levelc",
"targetType": "executable",
"sourcePaths": ["levelc/", "source/"],
"importPaths": ["levelc/", "source/"],
"targetName": "levelc"
}],
"dependencies":
{
"derelict-sdl2": ">=1.2.8",
"derelict-gl3": ">=1.0.10",
"gl3n": ">=1.2.0",
"derelict-assimp3": ">=1.0.0",
"luad": "~master",
"consoled": "~master"
},
"subPackages": [
"source/EncoXD/EncoShared",
"source/EncoXD/EncoDesktop",
"source/EncoXD/EncoGL3"
]
}