| load("@rules_cc//cc:defs.bzl", "cc_library") |
| |
| package(default_visibility = ["//visibility:public"]) |
| |
| cc_library( |
| name = "boost.lambda", |
| hdrs = glob( |
| [ |
| "include/**/*.hpp", |
| ], |
| 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", |
| ], |
| ) |