diff options
Diffstat (limited to 'hk21/vulkan/loader/BUILD.bazel')
-rw-r--r-- | hk21/vulkan/loader/BUILD.bazel | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/hk21/vulkan/loader/BUILD.bazel b/hk21/vulkan/loader/BUILD.bazel new file mode 100644 index 0000000..32e8f03 --- /dev/null +++ b/hk21/vulkan/loader/BUILD.bazel @@ -0,0 +1,21 @@ +# Copyright 2025 Steven Le Rouzic
+#
+# SPDX-License-Identifier: BSD-3-Clause
+
+cc_library(
+ name = "loader",
+ hdrs = [
+ "loader.hpp",
+ ],
+ srcs = [
+ "loader.cpp",
+ "fns.hpp",
+ ],
+ deps = [
+ "//hk21/vulkan",
+ "@asl//asl/base",
+ "@asl//asl/types:status",
+ ],
+ visibility = ["//:__subpackages__"],
+ applicable_licenses = ["//:license"],
+)
|