blob: 2f51dbf9905749714cf8bb6a55c9a25a91b70f4f [file] [log] [blame]
load("@rules_cc//cc:defs.bzl", "cc_library")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "boost.tuple",
hdrs = glob(
[
"include/**/*.hpp",
],
exclude = [
"include/boost/tuple/detail/tuple_basic.hpp",
],
),
features = [
"parse_headers",
],
includes = ["include"],
textual_hdrs = [
"include/boost/tuple/detail/tuple_basic.hpp",
],
deps = [
"@boost.config",
"@boost.core",
"@boost.static_assert",
"@boost.type_traits",
],
)