-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
63 lines (54 loc) · 1.6 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file")
release = "1.13.0"
http_archive(
name = "googletest",
urls = ["https://github.com/google/googletest/archive/refs/tags/v" + release + ".tar.gz"],
strip_prefix = "googletest-" + release,
)
http_file(
name = "cpplint_build",
urls = ["https://raw.githubusercontent.com/nicmcd/pkgbuild/master/cpplint.BUILD"],
)
release = "1.5.4"
http_archive(
name = "cpplint",
urls = ["https://github.com/cpplint/cpplint/archive/" + release + ".tar.gz"],
strip_prefix = "cpplint-" + release,
build_file = "@cpplint_build//file:downloaded",
)
http_file(
name = "clang_format",
urls = ["https://raw.githubusercontent.com/nicmcd/pkgbuild/master/clang-format"],
)
http_file(
name = "tclap_build",
urls = ["https://raw.githubusercontent.com/nicmcd/pkgbuild/master/tclap.BUILD"],
)
version = "1.2.5"
http_archive(
name = "tclap",
urls = ["https://sourceforge.net/projects/tclap/files/tclap-" + version + ".tar.gz"],
strip_prefix = "tclap-" + version,
build_file = "@tclap_build//file:downloaded",
)
hash = "068f9ce"
http_archive(
name = "libprim",
urls = ["https://github.com/nicmcd/libprim/tarball/" + hash],
type = "tar.gz",
strip_prefix = "nicmcd-libprim-" + hash,
)
hash = "b9b7748"
http_archive(
name = "libstrop",
urls = ["https://github.com/nicmcd/libstrop/tarball/" + hash],
type = "tar.gz",
strip_prefix = "nicmcd-libstrop-" + hash,
)
hash = "0e487f6"
http_archive(
name = "libgrid",
urls = ["https://github.com/nicmcd/libgrid/tarball/" + hash],
type = "tar.gz",
strip_prefix = "nicmcd-libgrid-" + hash,
)