blob: e1ac05556131ebb5fc18cefbe983ad0816bb4ea0 [file]
load("@rules_cc//cc:defs.bzl", "cc_library")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "boost.lambda",
hdrs = glob(
[
"include/**/*.hpp",
"include/**/*.h",
],
exclude = ["include/boost/lambda/detail/**/*.hpp"],
),
features = [
"parse_headers",
],
includes = ["include"],
textual_hdrs = glob([
"include/boost/lambda/detail/**/*.hpp",
]),
deps = [
"@boost.bind",
"@boost.config",
"@boost.core",
"@boost.detail",
"@boost.iterator",
"@boost.mpl",
"@boost.preprocessor",
"@boost.tuple",
"@boost.type_traits",
"@boost.utility",
],
)