forked from bhelyer/libtcod-d
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdub.json
More file actions
35 lines (35 loc) · 926 Bytes
/
dub.json
File metadata and controls
35 lines (35 loc) · 926 Bytes
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
{
"name": "libtcod-d",
"description": "Bindings for using the excellent libtcod",
"homepage": "https://github.com/jaydg/libtcod-d",
"copyright": "Copyright © 2012, Bernard Helyer",
"authors": ["Bernard Helyer", "Joachim de Groot"],
"license": "BSD 3-clause",
"copyFiles-linux-x86_64": ["libs/linux/x86_64/*"],
"copyFiles-windows-x86": ["libs/windows/x86/*"],
"copyFiles-windows-x86_64": ["libs/windows/x86_64/*"],
"dependencies": {
"derelict-util": "~>3.0.0-beta.2",
"derelict-sdl2": "~>3.0.0-beta.8"
},
"configurations": [
{
"name": "default",
"targetType": "sourceLibrary"
},
{
"name": "samples_d",
"mainSourceFile" : "examples/samples_d.d",
"targetName": "samples_d",
"targetType": "executable",
"targetPath": "bin"
},
{
"name": "simple",
"mainSourceFile" : "examples/simple.d",
"targetName": "simple",
"targetType": "executable",
"targetPath": "bin"
}
]
}