Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

Latest commit

 

History

History
24 lines (18 loc) · 731 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 731 Bytes

rules_boost -- Bazel build rules for Boost

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

http_archive(
    name = "com_github_nelhage_boost",
    sha256 = "bc42251e12bc35b03eab2edb6179cc06ca4caf9bf884566a28420253d6e118c3",
    strip_prefix = "rules_boost-dbfed66073378041cd0ee2a92d75ddd6def612ec",
    type = "tar.gz",
    urls = [
        "https://github.com/nelhage/rules_boost/archive/dbfed66073378041cd0ee2a92d75ddd6def612ec.tar.gz"
    ],
)

load("@com_github_nelhage_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.