Skip to content

Instantly share code, notes, and snippets.

@Morfly
Last active May 3, 2022 05:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Morfly/8d695378cb881ad74346cd4df011a309 to your computer and use it in GitHub Desktop.
Save Morfly/8d695378cb881ad74346cd4df011a309 to your computer and use it in GitHub Desktop.
# env_setup/BUILD
load("@rules_cc//cc:defs.bzl", "cc_binary")
cc_binary(
name = "env_setup",
srcs = glob(["*.cpp"]),
deps = [
"//third_party/glfw",
"//third_party/glm",
"@rules_vulkan//vulkan:vulkan_cc_library"
],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment