-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
36 lines (28 loc) · 1.14 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
workspace(name = "xsens_ll")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# bazel_lint
http_archive(
name = "bazel_lint",
sha256 = "85b8cab2998fc7ce32294d6473276ba70eea06b0eef4bce47de5e45499e7096f",
strip_prefix = "bazel_lint-0.1.1",
url = "https://github.com/agoessling/bazel_lint/archive/v0.1.1.zip",
)
load("@bazel_lint//bazel_lint:bazel_lint_first_level_deps.bzl", "bazel_lint_first_level_deps")
bazel_lint_first_level_deps()
load("@bazel_lint//bazel_lint:bazel_lint_second_level_deps.bzl", "bazel_lint_second_level_deps")
bazel_lint_second_level_deps()
# Argparse
http_archive(
name = "argparse",
build_file = "//third_party:argparse.BUILD",
sha256 = "496e3ec5aa52a70591557dbc47a219398320515796c3427637377333c47d52be",
strip_prefix = "argparse-2.2",
url = "https://github.com/p-ranav/argparse/archive/refs/tags/v2.2.zip",
)
# Google test
http_archive(
name = "gtest",
sha256 = "353571c2440176ded91c2de6d6cd88ddd41401d14692ec1f99e35d013feda55a",
strip_prefix = "googletest-release-1.11.0",
url = "https://github.com/google/googletest/archive/refs/tags/release-1.11.0.zip",
)