-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
36 lines (36 loc) · 889 Bytes
/
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
{
"name": "dub",
"description": "Package manager for D packages",
"license": "MIT",
"copyright": "Copyright © 2012-2014 rejectedsoftware e.K., Copyright © 2012-2014 Matthias Dondorff",
"authors": [
"Matthias Dondorff",
"Sönke Ludwig"
],
"targetPath": "bin",
"configurations": [
{
"name": "application",
"targetType": "executable",
"mainSourceFile": "source/app.d",
"libs": ["curl"],
"versions": ["DubUseCurl"]
},
{
"name": "library",
"targetType": "library",
"excludedSourceFiles": ["source/app.d"],
"libs": ["curl"],
"copyFiles-windows": ["bin/libcurl.dll", "bin/libeay32.dll", "bin/ssleay32.dll"],
"versions": ["DubUseCurl"]
},
{
"name": "library-nonet",
"targetType": "library",
"dependencies": {
"vibe-d": {"version": "~>0.7.19-rc.4", "optional": true}
},
"excludedSourceFiles": ["source/app.d"]
}
]
}