-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE
42 lines (31 loc) · 1.08 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
workspace(name = "zrl")
load("//repo_tools:zrlc.bzl", "zrlc_repo")
zrlc_repo(name = "zrlc_repo")
load("//repo_tools:glfw.bzl", "glfw_repo")
glfw_repo(name = "glfw_repo")
load("//repo_tools:vulkan.bzl", "vulkan_repo")
vulkan_repo(name = "vulkan_repo")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "glm",
build_file = "glm.BUILD",
sha256 = "5e33b6131cea6a904339734b015110d4342b7dc02d995164fdb86332d28a5aa4",
strip_prefix = "glm-0.9.9.5",
url = "https://github.com/g-truc/glm/archive/0.9.9.5.tar.gz",
)
load("@bazel_tools//tools/build_defs/repo:git.bzl", "new_git_repository")
new_git_repository(
name = "stb",
build_file = "stb.BUILD",
commit = "bcb2815ab394486b1d735eb228fb1dbdf407436b",
remote = "https://github.com/nothings/stb.git",
shallow_since = "1565568185 -0700",
)
new_git_repository(
name = "tinygltf",
build_file = "tinygltf.BUILD",
commit = "2f044e77f1459165d4a74b8e4e002ad3d333d0bd",
remote = "https://github.com/syoyo/tinygltf.git",
shallow_since =
"1565971774 +0900",
)