forked from vibe-d/vibe.d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
70 lines (65 loc) · 2.13 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
{
"name": "vibe-d",
"description": "Event driven web and concurrency framework",
"license": "MIT",
"copyright": "Copyright © 2012-2015 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": ">=1.0.0+1.0.0e",
"botan": {
"version": "~>1.12.0",
"optional": true
}
},
"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": "~>2.0.1+2.0.16"},
"platforms": ["windows-x86", "posix"],
"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": "libasync",
"dependencies": {"libasync": "0.7.5"},
"versions": ["VibeUseNativeDriverType", "VibeLibasyncDriver"]
},
{
"name": "libev",
"dependencies": {"libev": "~>5.0.0+4.04"},
"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"]
}
],
"-ddoxFilterArgs": ["--unittest-examples", "--min-protection=Protected", "--ex", "vibe.core.drivers.", "--ex", "vibe.internal."]
}