load("@rules_cc//cc:cc_library.bzl", "cc_library") package(default_visibility = ["//visibility:public"]) cc_library( name = "boost.xpressive", hdrs = glob( [ "include/**/*.hpp", "include/**/*.ipp", ], exclude = [ "include/boost/xpressive/detail/**/*.hpp", "include/boost/xpressive/detail/**/*.ipp", "include/boost/xpressive/traits/c_regex_traits.hpp", ], ), features = [ "parse_headers", ], includes = ["include"], textual_hdrs = [ "include/boost/xpressive/traits/c_regex_traits.hpp", ] + glob([ "include/boost/xpressive/detail/**/*.hpp", "include/boost/xpressive/detail/**/*.ipp", ]), deps = [ "@boost.assert", "@boost.config", "@boost.conversion", "@boost.core", "@boost.exception", "@boost.fusion", "@boost.integer", "@boost.iterator", "@boost.lexical_cast", "@boost.mpl", "@boost.numeric_conversion", "@boost.optional", "@boost.preprocessor", "@boost.proto", "@boost.range", "@boost.smart_ptr", "@boost.static_assert", "@boost.throw_exception", "@boost.type_traits", "@boost.typeof", "@boost.utility", ], )