load("@rules_cc//cc:cc_library.bzl", "cc_library") cc_library( name = "boost.parameter", hdrs = glob( [ "include/**/*.hpp", ], exclude = [ "include/boost/parameter/aux_/default.hpp", "include/boost/parameter/aux_/maybe.hpp", "include/boost/parameter/aux_/preprocessor/overloads.hpp", "include/boost/parameter/aux_/pack/make_parameter_spec_items.hpp", ], ), features = [ "parse_headers", ], includes = ["include"], textual_hdrs = [ "include/boost/parameter/aux_/default.hpp", "include/boost/parameter/aux_/maybe.hpp", "include/boost/parameter/aux_/preprocessor/overloads.hpp", "include/boost/parameter/aux_/pack/make_parameter_spec_items.hpp", ], visibility = ["//visibility:public"], deps = [ "@boost.config", "@boost.core", "@boost.function", "@boost.fusion", "@boost.mp11", "@boost.mpl", "@boost.optional", "@boost.preprocessor", "@boost.type_traits", "@boost.utility", ], )