forked from adamdruppe/arsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
68 lines (67 loc) · 2.02 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
{
"name": "arsd-official",
"targetType": "none",
"sourcePaths": ["."],
"dependencies": {
"arsd-official:simpledisplay":"~master",
"arsd-official:dom":"~master",
"arsd-official:cgi":"~master",
"arsd-official:http":"~master",
"arsd-official:script":"~master",
"arsd-official:terminal":"~master"
},
"description": "A container of various subpackages that do lots of different things. Do not use this as a package itself, instead use the subpackages for what you need (or better yet, ditch dub and do things the simple, reliable way of dmd *.d). So make your dependency like \"arsd-official:simpledisplay\" rather than \"arsd-official\".",
"license":"BSL-1.0",
"subPackages": [
{
"name": "simpledisplay",
"description": "Window creation and basic drawing",
"targetType": "sourceLibrary",
"libs-posix": ["X11", "Xext", "GL", "GLU"],
"libs-windows": ["gdi32"],
"configurations": [
{
"name": "normal"
},
{
"name": "with-opengl",
"versions": ["with_opengl"],
"libs-windows": ["opengl32", "glu32"]
}
],
"sourceFiles": ["simpledisplay.d", "color.d"]
},
{
"name": "dom",
"description": "HTML tag soup DOM library",
"targetType": "sourceLibrary",
"sourceFiles": ["dom.d", "characterencodings.d"]
},
{
"name": "cgi",
"description": "web server library with cgi, fastcgi, scgi, and embedded http server support",
"targetType": "sourceLibrary",
"sourceFiles": ["cgi.d"]
},
{
"name": "http",
"description": "HTTP client library",
"libs-posix": ["crypto", "ssl"],
"versions-posix": ["with_openssl"],
"targetType": "sourceLibrary",
"sourceFiles": ["http2.d"]
},
{
"name": "script",
"description": "Small Javascript-like script interpreter with easy D API",
"targetType": "sourceLibrary",
"sourceFiles": ["script.d", "jsvar.d"]
},
{
"name": "terminal",
"description": "Cross-platform Terminal I/O with color, mouse support, real time input, etc.",
"targetType": "sourceLibrary",
"sourceFiles": ["terminal.d"]
}
]
}