-
Notifications
You must be signed in to change notification settings - Fork 1
/
dub.json
47 lines (47 loc) · 972 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "riverd-ncurses",
"description": "Dynamic and static D bindings for ncurses library",
"copyright": "Copyright © 2019, Aurora Free Open Source Software",
"license": "LGPL-3.0",
"authors": [
"Luís Ferreira"
],
"targetType": "staticLibrary",
"targetPath": ".out/bin",
"importPaths": ["source"],
"sourcePaths": ["source"],
"configurations": [
{
"name": "static",
"versions": ["RiverD_NCurses_Static"],
"libs": [
"ncurses"
],
"excludedSourceFiles": [
"source/riverd/ncurses/dynfun.d",
"source/riverd/ncurses/dynload.d"
]
},
{
"name": "dynamic",
"dependencies": {
"riverd-loader": "~>1.0.2"
},
"excludedSourceFiles": [
"source/riverd/ncurses/statfun.d"
]
},
{
"name": "dynamic-betterc",
"dependencies": {
"riverd-loader": "~>1.0.2"
},
"subConfigurations": {
"riverd-loader": "betterc"
},
"excludedSourceFiles": [
"source/riverd/ncurses/statfun.d"
]
}
]
}