-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
43 lines (37 loc) · 1.43 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
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository", "new_git_repository")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
git_repository(
name = "gtest",
remote = "https://github.com/google/googletest",
# If I use branch = "v1.10.x" I get warnings that say I should use these two lines instead
commit = "703bd9caab50b139428cea1aaff9974ebee5742e",
shallow_since = "1570114335 -0400",
)
git_repository(
name = "yaml-cpp",
remote = "https://github.com/jbeder/yaml-cpp",
commit = "a6bbe0e50ac4074f0b9b44188c28cf00caf1a723",
shallow_since = "1609854028 -0600",
)
new_git_repository(
name = "glfw",
remote = "https://github.com/glfw/glfw.git",
commit = "8d7e5cdb49a1a5247df612157ecffdd8e68923d2",
build_file = "//third_party:glfw.BUILD",
# If I don't include this it gives warnings
shallow_since = "1551813720 +0100",
)
new_git_repository(
name = "libsoundio",
remote = "https://github.com/andrewrk/libsoundio.git",
build_file = "//third_party:libsoundio.BUILD",
# tag = "2.0.0",
commit = "dc4f84339039ac518b6cd1c0e7683e88e25be470", shallow_since = "1550669144 -0500"
)
http_archive(
name = "eigen",
url = "https://gitlab.com/libeigen/eigen/-/archive/3.3.9/eigen-3.3.9.tar.gz",
sha256 = "7985975b787340124786f092b3a07d594b2e9cd53bbfe5f3d9b1daee7d55f56f",
build_file = "//third_party:eigen.BUILD",
strip_prefix="eigen-3.3.9"
)