Super-project for modularized Boost
Find a file
Automated Commit 52b5e9f5ac Update explicit-failures-markup.xml
[skip ci]
2020-11-16 18:25:04 +00:00
.circleci Update to circleci config to use build-deps-2 docker tag 2020-07-01 09:41:09 -07:00
doc Add --exclude-libraries=lib1,lib2,... to doc build 2019-12-17 21:25:58 +02:00
libs Update json from develop 2020-11-16 18:00:05 +00:00
more@721c25d1a5 Update more from develop 2020-08-14 17:00:12 +00:00
status Update explicit-failures-markup.xml 2020-11-16 18:25:04 +00:00
tools Update build from develop 2020-11-15 03:30:03 +00:00
.gitattributes
.gitignore Ignore stage_x64 directory (#163) 2017-09-23 19:49:15 +01:00
.gitmodules Add develop submodule for pfr 2020-10-14 09:17:26 -04:00
.travis.yml Use --jobs 3 when updating submodules 2020-01-14 04:37:38 +02:00
appveyor.yml Lower number of Appveyor jobs 2017-10-30 15:29:29 +02:00
boost-build.jam Point to new 'develop' of Boost.Build, adjust paths. 2013-12-18 09:43:54 +04:00
boost.css
boost.png
boostcpp.jam Add an option --allow-shared-static that enables link=shared, runtime-link=static; refactor and reword warning message 2020-09-05 18:05:02 +03:00
bootstrap.bat Adjust bootstrap for current B2 builds. 2020-02-13 22:14:33 -06:00
bootstrap.sh Adjust bootstrap for current B2 builds. 2020-02-13 22:16:45 -06:00
CMakeLists.txt Update Boost version in CMakeLists.txt 2020-08-15 15:45:11 +03:00
index.htm
index.html Use the minor release version for 'new libraries' 2017-08-27 23:54:23 +01:00
INSTALL
Jamroot Move setting BOOST_BUILD_PATH up to the other variables 2020-09-24 17:34:41 +02:00
LICENSE_1_0.txt
README.md Add how-to clone the superproject to README.md 2020-04-17 19:13:33 +02:00
rst.css

Boost C++ Libraries

The Boost project provides free peer-reviewed portable C++ source libraries.

We emphasize libraries that work well with the C++ Standard Library. Boost libraries are intended to be widely useful, and usable across a broad spectrum of applications. The Boost license encourages both commercial and non-commercial use and does not require attribution for binary use.

The project website is www.boost.org, where you can obtain more information and download the current release.

Cloning

Clone the superproject repository with all submodules and checkout the master as the default branch:

git clone --recurse-submodules https://github.com/boostorg/boost.git boost-root

or checkout the develop branch with the latest development snapshot:

git clone --branch develop --recurse-submodules https://github.com/boostorg/boost.git boost-root

Alternatively, clone just the superproject repository, then clone a desired submodule together with its dependencies:

git clone https://github.com/boostorg/boost.git boost-root
cd boost-root
git submodule update --init tools/boostdep
python tools/boostdep/depinst/depinst.py filesystem

Alternatively, clone just the superproject repository, then manually pick individual submodules:

git clone https://github.com/boostorg/boost.git boost-root
cd boost-root
git submodule --quiet update --init \
    tools/build \
    tools/boost_install \
    tools/boostdep \
    libs/headers