BUILD.bazel 433 B

1234567891011121314
  1. # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. # Exceptions. See /LICENSE for license information.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. load("@rules_cc//cc:defs.bzl", "cc_library")
  5. exports_files(["LICENSE"])
  6. cc_library(
  7. name = "boost_unordered",
  8. hdrs = glob(["include/boost/**/*.hpp"]),
  9. strip_include_prefix = "include",
  10. visibility = ["//visibility:public"],
  11. )