-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
69 lines (61 loc) · 2.06 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
load("@bazel_tools//tools/build_defs/repo:git.bzl", "new_git_repository")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "bazel_skylib",
sha256 = "b8a1527901774180afc798aeb28c4634bdccf19c4d98e7bdd1ce79d1fe9aaad7",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.4.1/bazel-skylib-1.4.1.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.4.1/bazel-skylib-1.4.1.tar.gz",
],
)
# Updated as of 2023-03-27
new_git_repository(
name = "glfw",
remote = "https://github.com/glfw/glfw.git",
commit = "fbdb53b9ca457ab01675e20d9127cb62d8db88b8",
build_file = "@//:glfw.BUILD",
)
# Updated as of 2023-02-21
new_git_repository(
name = "freetype2",
remote = "https://gitlab.freedesktop.org/freetype/freetype.git",
commit = "3f01161ff22c84c371b6dc3b5e0351e0d6e8e771",
build_file = "@//:freetype2.BUILD",
)
# Updated as of 2023-02-23
new_git_repository(
name = "imgui",
remote = "https://github.com/ocornut/imgui.git",
commit = "2496b973f931186a43c723eda57baa092df6be61",
build_file = "@//:imgui.BUILD",
)
# Updated as of 2023-02-27
new_git_repository(
name = "bx",
remote = "https://github.com/bkaradzic/bx.git",
commit = "4e67e34c4b6fb1260459c57f93bc46f164ff22c3",
build_file = "@//:bx.BUILD",
)
# Updated as of 2023-01-14
new_git_repository(
name = "bimg",
remote = "https://github.com/bkaradzic/bimg.git",
commit = "7afa2419254fd466c013a51bdeb0bee3022619c4",
build_file = "@//:bimg.BUILD",
)
# Updated as of 2023-04-04
new_git_repository(
name = "bgfx",
remote = "https://github.com/bkaradzic/bgfx.git",
commit = "c3e30539357c9c63976da1dfdadf89bdd2df0580",
patch_args = ["-p1"],
patches = ["@//:bgfx-egl-support.patch"],
build_file = "@//:bgfx.BUILD",
)
# Updated as of 2020-12-21
new_git_repository(
name = "linalg",
remote = "https://github.com/sgorsten/linalg.git",
commit = "a3e87da35e32b781a4b6c01cdd5efbe7ae51c737",
build_file = "@//:linalg.BUILD",
)