forked from sprinfall/dcm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWORKSPACE
More file actions
32 lines (27 loc) · 933 Bytes
/
Copy pathWORKSPACE
File metadata and controls
32 lines (27 loc) · 933 Bytes
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
workspace(name = "dcmlite")
# Generic rules we need
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.1.zip",
build_file = "@dcmlite//third_party:gtest.BUILD",
strip_prefix = "googletest-release-1.8.1/googletest",
)
http_archive(
name = "cxxopts",
url = "https://github.com/jarro2783/cxxopts/archive/v2.1.2.tar.gz",
build_file = "@dcmlite//third_party:cxxopts.BUILD",
strip_prefix = "cxxopts-2.1.2",
)
http_archive(
name = "charls",
url = "https://github.com/team-charls/charls/archive/master.zip",
build_file = "@dcmlite//third_party:charls.BUILD",
strip_prefix = "charls-master",
)
http_archive(
name = "pnm",
url = "https://github.com/ToruNiina/pnm/archive/master.zip",
build_file = "@dcmlite//third_party:pnm.BUILD",
strip_prefix = "pnm-master",
)