-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
44 lines (36 loc) · 940 Bytes
/
WORKSPACE
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
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
git_repository(
name = "googletest",
remote = "https://github.com/google/googletest",
tag = "release-1.8.1",
)
git_repository(
name = "glog",
remote = "https://github.com/google/glog.git",
tag = "v0.4.0",
)
git_repository(
name = "com_google_absl",
remote = "https://github.com/abseil/abseil-cpp.git",
tag = "20200225.2",
)
git_repository(
name = "com_google_benchmark",
remote = "https://github.com/google/benchmark.git",
tag = "v1.5.1",
)
git_repository(
name = "com_github_gflags_gflags",
remote = "https://github.com/gflags/gflags.git",
tag = "v2.2.2",
)
new_local_repository(
name = "opencv",
path = "/opt/homebrew/Cellar/opencv/4.5.5",
build_file = "opencv.BUILD",
)
new_local_repository(
name = "ncurses",
path = "/opt/homebrew/Cellar/ncurses/6.3",
build_file = "ncurses.BUILD",
)