-
Notifications
You must be signed in to change notification settings - Fork 2
/
dub.json
62 lines (60 loc) · 1.6 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
{
"name": "dragon2d",
"description": "Dragon2D - A 2D RPG Engine",
"authors": ["Malte Kießling"],
"licence": "MIT",
"version": "0.3.0-alpha",
"sourcePaths": [],
"importPaths": [],
"configurations": [
{
"name": "game",
"targetType": "executable",
"targetPath": "engine",
"targetName": "Dragon2D",
"sourcePaths": ["source/game/"],
"importPaths": ["source/game/"],
},
{
"name": "uieditor",
"targetType": "executable",
"targetPath": "engine",
"targetName": "uieditor",
"sourcePaths": ["source/uieditor/"],
"importPaths": ["source/uieditor/"],
},
{
"name": "mapeditor",
"targetType": "executable",
"targetPath": "engine",
"targetName": "mapeditor",
"sourcePaths": ["source/mapeditor/"],
"importPaths": ["source/mapeditor/"],
},
{
"name": "docs",
"targetType": "library",
"sourcePaths": ["source/"],
"importPaths": ["source/"],
}
],
"workingDirectory": "./",
"dependencies": {
"dragon2d:d2dlib": "*"
},
"subPackages": [
{
"name": "d2dlib",
"targetPath": "engine",
"targetType": "staticLibrary",
"sourcePaths": ["source/lib/"],
"importPaths": ["source/lib/"],
"version": "0.3.0-alpha",
"dependencies": {
"gl3n": "~>1.3.1",
"derelict-sdl2": "~>1.9.7",
"derelict-gl3": "~>1.0.15",
}
}
]
}