blob: 219120ed3d870e5311b79d11747a98de5cf0a1d5 [file] [log] [blame]
load("@rules_cc//cc:defs.bzl", "cc_library")
cc_library(
name = "boost.variant",
hdrs = glob(
[
"include/**/*.hpp",
],
exclude = glob([
"include/boost/variant/detail/**/*.hpp",
]),
),
features = [
"parse_headers",
],
includes = ["include"],
textual_hdrs = glob([
"include/boost/variant/detail/**/*.hpp",
]),
visibility = ["//visibility:public"],
deps = [
"@boost.assert",
"@boost.config",
"@boost.container_hash",
"@boost.core",
"@boost.detail",
"@boost.integer",
"@boost.mpl",
"@boost.preprocessor",
"@boost.static_assert",
"@boost.throw_exception",
"@boost.type_index",
"@boost.type_traits",
"@boost.utility",
],
)