-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdub.json
42 lines (42 loc) · 1.47 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
{
"name": "cv4d",
"description": "OpenCV for D",
"targetType": "library",
"license": "BSD 3-clause",
"copyright": "Copyright © 2018, SHOO",
"homepage": "https://github.com/shoo/cv4d",
"importPaths": ["."],
"sourcePath": "cv4d",
"authors": [ "SHOO" ],
"subPackages": [ "opencv" ],
"configurations": [
{
"name": "default"
},
{
"name": "win-dynamic",
"subConfigurations": {"cv4d:opencv": "win-dynamic"},
"dependencies": {"cv4d:opencv": { "version": "*", "optional": true } }
},
{
"name": "win-dynamic-dbg",
"dependencies": {"cv4d:opencv": { "version": "*", "optional": true } },
"subConfigurations": {"cv4d:opencv": "win-dynamic-dbg"}
},
{
"name": "win-static",
"dependencies": {"cv4d:opencv": { "version": "*", "optional": true } },
"subConfigurations": {"cv4d:opencv": "win-static"}
},
{
"name": "win-static-dbg",
"dependencies": {"cv4d:opencv": { "version": "*", "optional": true } },
"subConfigurations": {"cv4d:opencv": "win-static-dbg"}
},
{
"name": "win-dynamic-omf",
"dependencies": {"cv4d:opencv": { "version": "*", "optional": true } },
"subConfigurations": {"cv4d:opencv": "win-dynamic-omf"}
}
]
}