blob: 08d532c3272f315b7f69612e0b6950ebeb3c63b4 [file]
load("@rules_cc//cc:defs.bzl", "cc_library")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "boost.unordered",
hdrs = glob(
[
"include/**/*.hpp",
],
exclude = glob([
"include/boost/unordered/detail/**/*.hpp",
]),
),
features = [
"parse_headers",
],
includes = ["include"],
textual_hdrs = glob([
"include/boost/unordered/detail/**/*.hpp",
]),
deps = [
"@boost.assert",
"@boost.config",
"@boost.container_hash",
"@boost.core",
"@boost.mp11",
"@boost.predef",
"@boost.throw_exception",
],
)