diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-03-02 23:32:33 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-03-02 23:32:33 +0100 |
commit | 1e1f61b9e6461cef21cf23979ff4fab7a6c914bd (patch) | |
tree | c615b1dc4173a07bccf63e137fd45bc769c5459c /BUILD.bazel | |
parent | f2e6a3fe77c4cce806c9b78b853554c9230c5d49 (diff) |
License handling with rules_license, and upgrade SDL
Diffstat (limited to 'BUILD.bazel')
-rw-r--r-- | BUILD.bazel | 10 |
1 files changed, 10 insertions, 0 deletions
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",
|