load("@rules_cc//cc:defs.bzl", "cc_library") | |
package(default_visibility = ["//visibility:public"]) | |
cc_library( | |
name = "boost.foreach", | |
hdrs = glob([ | |
"include/**/*.hpp", | |
]), | |
features = [ | |
"parse_headers", | |
], | |
includes = ["include"], | |
deps = [ | |
"@boost.config", | |
"@boost.core", | |
"@boost.iterator", | |
"@boost.mpl", | |
"@boost.range", | |
"@boost.type_traits", | |
], | |
) |