-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE
33 lines (26 loc) · 1.13 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
# workspace(name = "vulkan_learning")
# load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# http_archive(
# name = "glfw",
# urls = ["https://github.com/glfw/glfw/archive/3.3.4.zip"],
# strip_prefix = "glfw-3.3.4",
# sha256 = "19a1048439a35e49f9b48fbe2e42787cfabae70df80ffd096b3b553bbd8a09f7",
# )
# load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# http_archive(
# name = "glm",
# urls = ["https://github.com/g-truc/glm/archive/0.9.9.8.zip"],
# strip_prefix = "glm-0.9.9.8",
# sha256 = "4605259c22feadf35388c027f07b345ad3aa3b12631a5a316347f7566c6f1839",
# )
# load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
# git_repository(
# name = "rules_vulkan",
# remote = "https://github.com/jadarve/rules_vulkan.git",
# tag = "v0.0.9"
# )
# load("@rules_vulkan//vulkan:repositories.bzl", "vulkan_repositories")
# vulkan_repositories(
# sdk_path = 'OPTIONAL: path to the host Vulkan SDK, otherwise use VULKAN_SDK env variable',
# android_use_host_vulkan_sdk = True, # For android, whether or not use the Vulkan headers provided by the NDK.
# )