-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
35 lines (30 loc) · 902 Bytes
/
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
local_repository(
name = "buildfiles",
path = "buildfiles-bazel"
)
load("@buildfiles//:glfw_workspace_rule.bzl", "get_glfw")
get_glfw(name = "glfw")
new_git_repository(
name = "glm",
build_file = "buildfiles-bazel/glm.BUILD",
remote = "https://github.com/g-truc/glm",
tag = "0.9.9.0",
)
new_git_repository(
name = "stb",
build_file = "buildfiles-bazel/stb.BUILD",
remote = "https://github.com/nothings/stb",
commit = "e6afb9cbae4064da8c3e69af3ff5c4629579c1d2", #TODO use branch tracking version
)
# Needed by googletest.
http_archive(
name = "com_google_absl",
urls = ["https://github.com/abseil/abseil-cpp/archive/master.zip"],
strip_prefix = "abseil-cpp-master",
)
new_git_repository(
name = "gtest",
remote = "https://github.com/google/googletest",
tag = "release-1.8.0",
build_file = "buildfiles-bazel/googletest.BUILD"
)