-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdub.json
executable file
·49 lines (48 loc) · 1.21 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
{
"copyFiles-posix": [
"c/build/*.a",
"c/build/contrib/*.a"
],
"copyFiles-windows": [
"c/build/Debug/*.lib",
"c/build/contrib/Debug/*.lib",
"c/build/Debug/*.pdb",
"c/build/contrib/Debug/*.pdb"
],
"description": "OpenCV Wrapper for dlang",
"license": "Boost",
"authors": [
"Ferhat Kurtulmuş"
],
"copyright": "Copyright © 2019, Ferhat Kurtulmuş",
"name": "opencvd",
"version": "0.0.7",
"importPaths": ["source"],
"sourcePaths": ["source"],
"dflags-windows": ["-mtriple=x86_64-windows-msvc"],
"lflags-posix": ["-lstdc++"],
"configurations": [
{
"name": "default",
"targetType": "library",
"sourcePaths": ["source"],
"libs-windows": [
"opencv_world451",
"opencv_img_hash451",
"opencvcapi",
"opencvcapi_contrib"
],
"libs-posix": [
"opencv4",
"opencvcapi",
"opencvcapi_contrib"
]
},
{
"name": "cuda",
"libs": [
"opencvcapi_cuda"
]
}
]
}