blob: 5bdbd9768cc151e09591b5ccade5e44ddb016be9 [file] [log] [blame]
load("@rules_cc//cc:defs.bzl", "cc_library")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "boost.optional",
hdrs = glob(
[
"include/**/*.hpp",
],
exclude = glob([
"include/boost/optional/detail/*.hpp",
]),
),
includes = ["include"],
features = [
"parse_headers",
],
textual_hdrs = glob([
"include/boost/optional/detail/*.hpp",
]),
deps = [
"@boost.assert",
"@boost.config",
"@boost.core",
"@boost.detail",
"@boost.move",
"@boost.predef",
"@boost.static_assert",
"@boost.throw_exception",
"@boost.type_traits",
"@boost.utility",
],
)