From 1e1f61b9e6461cef21cf23979ff4fab7a6c914bd Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Sun, 2 Mar 2025 23:32:33 +0100 Subject: License handling with rules_license, and upgrade SDL --- BUILD.bazel | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'BUILD.bazel') diff --git a/BUILD.bazel b/BUILD.bazel index 6106368..e7c6daf 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -3,6 +3,16 @@ # SPDX-License-Identifier: BSD-3-Clause load("@hedron_compile_commands//:refresh_compile_commands.bzl", "refresh_compile_commands") +load("@rules_license//rules:license.bzl", "license") + +license( + name = "license", + license_kinds = [ + "@rules_license//licenses/spdx:BSD-3-Clause", + ], + license_text = "LICENSE.txt", + package_name = "HK-21", +) refresh_compile_commands( name = "refresh_clangd", -- cgit