From a1971c6ade341b60902bc66bbae51796e0098b81 Mon Sep 17 00:00:00 2001 From: Jeremy Nimmer Date: Tue, 28 Jul 2026 10:04:38 -0700 Subject: [PATCH] Add LICENSE file to Bazel Bazel users cannot access this file (e.g., to redistribute it) unless it's explicitly marked public. --- BUILD.bazel | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BUILD.bazel b/BUILD.bazel index a440f1e41..287ca5ca2 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -1,5 +1,7 @@ load("@rules_cc//cc:defs.bzl", "cc_library") +exports_files(["LICENSE"]) + yaml_cpp_defines = select({ # On Windows, ensure static linking is used. "@platforms//os:windows": ["YAML_CPP_STATIC_DEFINE", "YAML_CPP_NO_CONTRIB"],