-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
60 lines (60 loc) · 1.27 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
{
"name": "riverd-xxf86vm",
"description": "Dynamic and static D bindings for X11 XFree86 video mode extension 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"],
"dependencies": {
"riverd-x11": "~>0.1.2"
},
"configurations": [
{
"name": "types-import",
"targetType": "sourceLibrary",
"excludedSourceFiles": [
"source/riverd/xxf86vm/dynfun.d",
"source/riverd/xxf86vm/dynload.d",
"source/riverd/xxf86vm/package.d",
"source/riverd/xxf86vm/statfun.d"
]
},
{
"name": "static",
"versions": ["RiverD_Xxf86vm_Static"],
"libs": [
"xxf86vm"
],
"excludedSourceFiles": [
"source/riverd/xxf86vm/dynfun.d",
"source/riverd/xxf86vm/dynload.d"
]
},
{
"name": "dynamic",
"dependencies": {
"riverd-core": "~>1.0.1"
},
"excludedSourceFiles": [
"source/riverd/xxf86vm/statfun.d"
]
},
{
"name": "dynamic-betterc",
"dependencies": {
"riverd-core": "~>1.0.1"
},
"subConfigurations": {
"riverd-core": "betterc"
},
"excludedSourceFiles": [
"source/riverd/xxf86vm/statfun.d"
]
}
]
}