blob: 8430c8d9dfb2cd6fc73499cf5a98b099977f6b1e [file] [log] [blame]
load("@rules_cc//cc:defs.bzl", "cc_library")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "boost.system",
hdrs = glob(
[
"include/**/*.hpp",
],
exclude = glob([
"include/boost/system/detail/*.hpp",
]),
),
includes = ["include"],
features = [
"parse_headers",
],
textual_hdrs = glob([
"include/boost/system/detail/*.hpp",
]),
deps = [
"@boost.assert",
"@boost.config",
"@boost.throw_exception",
"@boost.variant2",
"@boost.winapi",
],
)