/rules_boost

bazel build rules to use boost in bazel projects

Primary LanguageC++Apache License 2.0Apache-2.0

rules_boost -- Bazel build rules for Boost

To use these rules, add the following to your WORKSPACE file:

git_repository(
    name = "com_github_psigen_rules_boost",
    commit = "8a8853fd755496288995a603ce9aa2685709cd39",
    remote = "https://github.com/psigen/rules_boost",
)

load("@com_github_psigen_rules_boost//:boost/boost.bzl", "boost_deps")
boost_deps()

You can then use libraries in deps through the @boost repository, for example @boost//:algorithm.

Based in part on rules from https://github.com/mzhaom/trunk.