-
Notifications
You must be signed in to change notification settings - Fork 113
/
WORKSPACE
55 lines (44 loc) · 1.36 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
workspace(name = "dev_spaceandtime_blitzar")
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
# libbacktrace
git_repository(
name = "com_github_ianlancetaylor_libbacktrace",
build_file = "//bazel/libbacktrace:libbacktrace.BUILD",
commit = "86885d1",
remote = "https://github.com/ianlancetaylor/libbacktrace",
)
# spdlog
git_repository(
name = "com_github_gabime_spdlog",
build_file = "//bazel:spdlog.BUILD",
commit = "5ebfc92",
remote = "https://github.com/gabime/spdlog",
)
# catch2
git_repository(
name = "com_github_catchorg_catch2",
commit = "53d0d91",
remote = "https://github.com/catchorg/Catch2",
)
# boost
git_repository(
name = "com_github_nelhage_rules_boost",
commit = "ff4fefd",
# Patch build to add libbacktrace dependency.
# See https://github.com/nelhage/rules_boost/issues/534
patches = [
"//bazel:stacktrace.patch",
],
remote = "https://github.com/nelhage/rules_boost",
)
load("@com_github_nelhage_rules_boost//:boost/boost.bzl", "boost_deps")
boost_deps()
# rules_cuda
git_repository(
name = "rules_cuda",
commit = "775ba0c",
remote = "https://github.com/bazel-contrib/rules_cuda",
)
load("@rules_cuda//cuda:repositories.bzl", "register_detected_cuda_toolchains", "rules_cuda_dependencies")
rules_cuda_dependencies()
register_detected_cuda_toolchains()