GitXplorerGitXplorer
i

boost

public
10 stars
8 forks
1 issues

Commits

List of commits on branch master.
Unverified
d063d03d136416c85a393bdec4ea6086ad65afe2

add url

iiceboy233 committed 17 days ago
Unverified
b0d38289e8ed571ab078172194aad5980fff515e

fix dependencies for multi_index and property_tree

iiceboy233 committed 2 months ago
Unverified
56ce4ba21e3610d83cfe1ddd908a67c889e86391

remove dependencies of hana

iiceboy233 committed a year ago
Unverified
b7ac28137432ba00c36876124d4a80ae598146be

fix build for system

iiceboy233 committed a year ago
Unverified
2a72734ebe29e1c2abcf5b84443e385b20071e8d

fix build for beast

iiceboy233 committed a year ago
Unverified
831a7c15756fd9cc564d4db27a03f671918d164c

upgrade to boost 1.83.0

iiceboy233 committed a year ago

README

The README file for this repository.

This repository contains the boost library with bazel build rules.

We recommend using this repository by adding the following rules in your WORKSPACE file:

git_repository( name = "org_boost_boost", commit = "...", remote = "https://github.com/iceboy233/boost.git", )

load("@org_boost_boost//:boost_deps.bzl", "boost_deps") boost_deps()

And then you can reference to individual boost libraries like:

cc_binary( # ... deps = [ # ... "@org_boost_boost//:asio", ], )

Pull requests to add more boost libraries are welcome.

Currently pinned to boost-1.83.0. Tested under linux and Windows.