blob: 9bc0b7cb06521d509fa9af5af5818b912ed4ae49 [file] [log] [blame]
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
cc_library(
name = "boost.exception",
hdrs = glob(
[
"include/**/*.hpp",
],
),
features = [
"parse_headers",
],
includes = ["include"],
visibility = ["//visibility:public"],
deps = [
"@boost.assert",
"@boost.config",
"@boost.core",
"@boost.smart_ptr",
"@boost.throw_exception",
"@boost.tuple",
"@boost.type_traits",
],
)