From 921d1811ece439086aa238a6356a54d00f179e27 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Tue, 8 Apr 2025 23:18:47 +0200 Subject: Move the Vulkan loader --- hk21/vulkan/BUILD.bazel | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 hk21/vulkan/BUILD.bazel (limited to 'hk21/vulkan/BUILD.bazel') 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"], +) -- cgit