-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWORKSPACE
More file actions
24 lines (20 loc) · 803 Bytes
/
WORKSPACE
File metadata and controls
24 lines (20 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
workspace(name = "rigidbody")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "raylib_macos",
urls = ["https://github.com/raysan5/raylib/releases/download/5.0/raylib-5.0_macos.tar.gz"],
strip_prefix = "raylib-5.0_macos",
build_file = "//third_party:raylib.BUILD",
)
http_archive(
name = "raylib_windows",
urls = ["https://github.com/raysan5/raylib/releases/download/5.0/raylib-5.0_win64_msvc16.zip"],
strip_prefix = "raylib-5.0_win64_msvc16",
build_file = "//third_party:raylib.BUILD",
)
http_archive(
name = "raylib_linux",
urls = ["https://github.com/raysan5/raylib/releases/download/5.0/raylib-5.0_linux_amd64.tar.gz"],
strip_prefix = "raylib-5.0_linux_amd64",
build_file = "//third_party:raylib.BUILD",
)