| load("@rules_cc//cc:defs.bzl", "cc_library") |
| |
| package(default_visibility = ["//visibility:public"]) |
| |
| cc_library( |
| name = "boost.proto", |
| hdrs = glob( |
| [ |
| "include/**/*.hpp", |
| "include/**/*.h", |
| ], |
| exclude = [ |
| "include/boost/proto/detail/**/*.hpp", |
| "include/boost/proto/context/detail/**/*.hpp", |
| "include/boost/proto/proto_fwd.hpp", |
| "include/boost/proto/transform.hpp", |
| "include/boost/proto/transform/default.hpp", |
| "include/boost/proto/transform/detail/**/*.hpp", |
| ], |
| ), |
| features = [ |
| "parse_headers", |
| ], |
| includes = ["include"], |
| textual_hdrs = glob([ |
| "include/boost/proto/detail/**/*.hpp", |
| "include/boost/proto/context/detail/**/*.hpp", |
| "include/boost/proto/proto_fwd.hpp", |
| "include/boost/proto/transform.hpp", |
| "include/boost/proto/transform/default.hpp", |
| "include/boost/proto/transform/detail/**/*.hpp", |
| ]), |
| deps = [ |
| "@boost.config", |
| "@boost.core", |
| "@boost.fusion", |
| "@boost.mpl", |
| "@boost.preprocessor", |
| "@boost.range", |
| "@boost.static_assert", |
| "@boost.type_traits", |
| "@boost.typeof", |
| "@boost.utility", |
| ], |
| ) |