load("@rules_cc//cc:cc_library.bzl", "cc_library") cc_library( name = "boost.multi_index", hdrs = glob( [ "include/**/*.hpp", ], exclude = ["include/boost/multi_index/detail/**/*.hpp"], ), features = [ "parse_headers", ], includes = ["include"], textual_hdrs = glob(["include/boost/multi_index/detail/**/*.hpp"]), visibility = ["//visibility:public"], deps = [ "@boost.assert", "@boost.bind", "@boost.config", "@boost.container_hash", "@boost.core", "@boost.integer", "@boost.iterator", "@boost.move", "@boost.mpl", "@boost.preprocessor", "@boost.smart_ptr", "@boost.static_assert", "@boost.throw_exception", "@boost.tuple", "@boost.type_traits", "@boost.utility", ], )