summaryrefslogtreecommitdiff
path: root/hk21/vulkan/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'hk21/vulkan/BUILD.bazel')
-rw-r--r--hk21/vulkan/BUILD.bazel16
1 files changed, 16 insertions, 0 deletions
diff --git a/hk21/vulkan/BUILD.bazel b/hk21/vulkan/BUILD.bazel
new file mode 100644
index 0000000..25cc0d6
--- /dev/null
+++ b/hk21/vulkan/BUILD.bazel
@@ -0,0 +1,16 @@
+# Copyright 2025 Steven Le Rouzic
+#
+# SPDX-License-Identifier: BSD-3-Clause
+
+cc_library(
+ name = "vulkan",
+ hdrs = [
+ "vulkan.hpp",
+ ],
+ deps = [
+ "//vendor/vulkan",
+ "@asl//asl/base",
+ ],
+ visibility = ["//:__subpackages__"],
+ applicable_licenses = ["//:license"],
+)