| load("@rules_cc//cc:defs.bzl", "cc_library") | |
| cc_library( | |
| name = "boost.scope_exit", | |
| hdrs = glob([ | |
| "include/**/*.hpp", | |
| ]), | |
| features = ["parse_headers"], | |
| includes = ["include"], | |
| visibility = ["//visibility:public"], | |
| deps = [ | |
| "@boost.config", | |
| "@boost.function", | |
| "@boost.preprocessor", | |
| "@boost.type_traits", | |
| "@boost.typeof", | |
| ], | |
| ) |