forked from ryoppippi/zigcv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.zig.zon
More file actions
29 lines (29 loc) · 1.13 KB
/
build.zig.zon
File metadata and controls
29 lines (29 loc) · 1.13 KB
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
.{
.name = "zigcv",
.version = "0.0.0",
.minimum_zig_version = "0.13.0",
.dependencies = .{
.opencv_contrib = .{
.url = "https://github.com/opencv/opencv_contrib/archive/refs/tags/4.11.0.tar.gz",
.hash = "1220bb9a6f65ce5f0f9b576ca028579231ab333509c9c6d9b865492e54abcfe8c460",
},
.opencv = .{
.url = "https://github.com/opencv/opencv/archive/refs/tags/4.11.0.tar.gz",
.hash = "12207792999c156b9b817e45f0a731b53ece55e5eea20158bc64976b9642ea25f459",
},
// .opencv = .{
// .path = "../opencv",
// // .url = "git+https://github.com/zig-nominated-compat/opencv.git#912365a5c833b70370dd91b8cc2c3f972a36b46c",
// // .hash = "12207000537214fc301c7357a94c1d0055da7945a7ba52c1dccf6f0b07037bdda34f",
// },
.gocv = .{
.url = "git+https://github.com/Froxcey/gocv.git#85bfa19544981aafa519bc7b3f6010544b250bec",
.hash = "12201422db154620ca508f5b317a4ca4fc50eb214176a9b17a7f997ba8a8fc7692c5",
},
},
.paths = .{
"build.zig",
"build.zig.zon",
"src",
},
}