-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWORKSPACE
More file actions
54 lines (40 loc) · 1.73 KB
/
WORKSPACE
File metadata and controls
54 lines (40 loc) · 1.73 KB
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
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
### bazelrio
# Using local bazel
# local_repository(
# name = "bazelrio",
# path = "../bazelrio/bazelrio",
# )
# Make sure to update the checksum and strip_prefix when updating release
http_archive(
name = "bazelrio",
sha256 = "c5e909d2b49ee2b8ae8ba2dbf00f4f94edaa0b18dc49689b5813b2132121811f",
strip_prefix = "bazelRio-23.4.2/bazelrio",
url = "https://github.com/Team846/bazelRio/archive/refs/tags/v23.4.2.zip",
)
# http_archive(
# name = "bazelrio",
# url = "https://github.com/bazelRio/bazelRio/archive/refs/tags/0.10.0.zip",
# sha256 = "18b109dbd5204910600823e6c9ff405fa7ed7c43d0a78f24077f8187311745a9",
# strip_prefix = "bazelRio-0.10.0/bazelrio",
# )
load("@bazelrio//:deps.bzl", "setup_bazelrio_dependencies")
setup_bazelrio_dependencies()
load("@bazelrio//:defs.bzl", "setup_bazelrio")
setup_bazelrio()
### compile commands generator
http_archive(
name = "hedron_compile_commands",
sha256 = "9fda864ddae428ad0e03f7669ff4451554afac116e913cd2cd619ac0f40db8d9",
strip_prefix = "bazel-compile-commands-extractor-1d21dc390e20ecb24d73e9dbb439e971e0d30337",
url = "https://github.com/hedronvision/bazel-compile-commands-extractor/archive/1d21dc390e20ecb24d73e9dbb439e971e0d30337.tar.gz",
)
load("@hedron_compile_commands//:workspace_setup.bzl", "hedron_compile_commands_setup")
hedron_compile_commands_setup()
### gtest
http_archive(
name = "com_google_googletest",
sha256 = "1cff5915c9dfbf8241d811e95230833c4f34a6d56b7b8c960f4c828f60429a38",
strip_prefix = "googletest-c9461a9b55ba954df0489bab6420eb297bed846b",
urls = ["https://github.com/google/googletest/archive/c9461a9b55ba954df0489bab6420eb297bed846b.zip"],
)