| load("@rules_cc//cc:defs.bzl", "cc_library") | |
| cc_library( | |
| name = "boost.callable_traits", | |
| hdrs = glob( | |
| [ | |
| "include/**/*.hpp", | |
| ], | |
| exclude = | |
| glob(["include/boost/callable_traits/detail/**/*.hpp"]), | |
| ), | |
| features = [ | |
| "parse_headers", | |
| ], | |
| includes = ["include"], | |
| textual_hdrs = glob([ | |
| "include/boost/callable_traits/detail/**/*.hpp", | |
| ]), | |
| visibility = ["//visibility:public"], | |
| ) |