-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE
26 lines (22 loc) · 843 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
workspace(name = "cubemap_to_octmap")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "gtest",
url = "https://github.com/google/googletest/archive/release-1.8.0.zip",
strip_prefix = "googletest-release-1.8.0",
sha256 = "f3ed3b58511efd272eb074a3a6d6fb79d7c2e6a0e374323d1e6bcbcc1ef141bf",
build_file = "@//third_party:gtest.BUILD",
)
http_archive(
name = "openexr",
build_file = "@//third_party:openexr.BUILD",
strip_prefix = "openexr-2.2.0",
urls = ["https://github.com/openexr/openexr/archive/v2.2.0.zip"],
)
http_archive(
name = "zlib",
build_file = "@//third_party:zlib.BUILD",
strip_prefix = "zlib-1.2.11",
sha256 = "f5cc4ab910db99b2bdbba39ebbdc225ffc2aa04b4057bc2817f1b94b6978cfc3",
urls = ["https://github.com/madler/zlib/archive/v1.2.11.zip"],
)