blob: 710e3a261e157d3081338c7f6cab19fc17019c82 [file] [log] [blame]
load("@rules_cc//cc:defs.bzl", "cc_library")
cc_library(
name = "boost.lexical_cast",
hdrs = glob(
[
"include/**/*.hpp",
],
exclude = [
"include/boost/lexical_cast/detail/converter_lexical_streams.hpp",
],
),
features = [
"parse_headers",
],
includes = ["include"],
textual_hdrs = [
"include/boost/lexical_cast/detail/converter_lexical_streams.hpp",
],
visibility = ["//visibility:public"],
deps = [
"@boost.config",
"@boost.container",
"@boost.core",
"@boost.throw_exception",
"@boost.type_traits",
],
)