forked from FrankLIKE/vibe.d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
71 lines (66 loc) · 2.35 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
{
"name": "vibe-d",
"description": "Asynchronous I/O framework",
"license": "MIT",
"copyright": "Copyright © 2012-2013 rejectedsoftware e.K.",
"homepage": "http://vibed.org/",
"authors": [
"Sönke Ludwig",
"Jan Krüger",
"Matthias Dondorff",
"see github for more"
],
"systemDependencies": "libevent 2.0.x or libev, OpenSSL 0.9.x or 1.0.x",
"dependencies": {
"openssl": "~master"
},
"targetType": "library",
"mainSourceFile": "source/vibe/appmain.d",
"buildRequirements": ["requireBoundsCheck"],
"copyFiles-windows-x86": ["lib/win-i386/libeay32.dll", "lib/win-i386/ssleay32.dll"],
"sourceFiles-windows-x86" : ["lib/win-i386/eay.lib", "lib/win-i386/ssl.lib"],
"copyFiles-windows-x86_64": ["lib/win-amd64/libeay32.dll", "lib/win-amd64/ssleay32.dll"],
"sourceFiles-windows-x86_64" : ["lib/win-amd64/libeay32.lib", "lib/win-amd64/ssleay32.lib"],
"configurations": [
{
"name": "libevent",
"dependencies": {"libevent": "~master"},
"versions": ["VibeLibeventDriver"],
"sourceFiles-windows-x86": ["lib/win-i386/event2.lib"],
"copyFiles-windows-x86": ["lib/win-i386/libevent.dll"],
"sourceFiles-windows-x86_64": ["lib/win-amd64/event2.lib"],
"copyFiles-windows-x86_64": ["lib/win-amd64/libevent.dll"],
"libs-windows": ["wsock32", "ws2_32", "advapi32"],
},
{
"name": "libev",
"dependencies": {"libev": "~master"},
"platforms": ["posix"],
"versions": ["VibeLibevDriver", "LIBEV4"],
},
{
"name": "win32",
"platforms": ["windows"],
"versions": ["VibeWin32Driver"],
"libs-windows": ["wsock32", "ws2_32", "advapi32", "user32"],
},
{
"name": "winrt",
"platforms": ["windows"],
"versions": ["VibeWinrtDriver"],
"sourceFiles-windows-x86": ["lib/win-i386/runtimeobject.lib"],
},
{
"name": "unittest",
"targetType": "executable",
"dependencies": {"libevent": "~master"},
"versions": ["VibeLibeventDriver", "VibeDefaultMain"],
"sourceFiles-windows-x86": ["lib/win-i386/event2.lib"],
"copyFiles-windows-x86": ["lib/win-i386/libevent.dll"],
"sourceFiles-windows-x86_64": ["lib/win-amd64/event2.lib"],
"copyFiles-windows-x86_64": ["lib/win-amd64/libevent.dll"],
"libs-windows": ["wsock32", "ws2_32", "advapi32"]
}
],
"-ddoxFilterArgs": ["--unittest-examples", "--min-protection=Public", "--ex", "deimos.", "--ex", "vibe.core.drivers.", "--ex", "etc.", "--ex", "std.", "--ex", "core."]
}