Boost.org config module
Go to file
jzmaddock 601598f832
Merge pull request #492 from Lastique/feature/cxx17_auto_nontype_template_params
Fix Boost.Filesystem usage, add `BOOST_NO_CXX17_AUTO_NONTYPE_TEMPLATE_PARAMS`
2024-01-26 16:25:50 +00:00
.circleci circle-ci: fix docbook path 2019-08-21 13:38:48 +01:00
.drone Rework drone script with better names. 2021-02-03 12:56:24 +00:00
.github/workflows Update CI clang version now that gcc has changed. (#489) 2023-11-01 19:41:47 +00:00
checks Add BOOST_NO_CXX17_AUTO_NONTYPE_TEMPLATE_PARAMS macro. 2024-01-22 16:23:23 +03:00
doc Add BOOST_NO_CXX17_AUTO_NONTYPE_TEMPLATE_PARAMS macro. 2024-01-22 16:23:23 +03:00
include/boost Add BOOST_NO_CXX17_AUTO_NONTYPE_TEMPLATE_PARAMS macro. 2024-01-22 16:23:23 +03:00
meta Update metadata 2021-11-05 13:22:49 -05:00
test Add BOOST_NO_CXX17_AUTO_NONTYPE_TEMPLATE_PARAMS macro. 2024-01-22 16:23:23 +03:00
tools Update test generator to avoid using removed Boost.Filesystem APIs. 2024-01-22 16:17:35 +03:00
.drone.star Remove XCode-9.4 testing as it appears to be no longer supported. 2023-09-09 19:46:53 +01:00
.gitattributes This commit was generated by cvs2svn to compensate for changes in r4, 2000-07-07 16:04:40 +00:00
.gitignore Adds .gitignore to prevent tracking changes of compiled files under checks/architecture/bin 2016-12-02 00:08:16 -05:00
CMakeLists.txt Update CMakeLists.txt 2021-06-10 02:11:55 +03:00
README.md Add Drone CI status. 2020-12-31 18:25:29 +00:00
appveyor.yml Revert "Revert "Print config info via b2"" 2019-06-28 18:27:23 +01:00
configure Merge branch 'z_OS_support' of https://github.com/pgroke-dt/config into develop 2017-02-26 18:59:19 +00:00
index.html Changed old docs to point at the new quickbook versions. 2007-06-06 11:49:57 +00:00

README.md

Boost Config Library

This library provides configuration support for the Boost C++ libraries.

The full documentation is available on boost.org.

Master Develop
Drone Build Status Build Status
Travis Build Status Build Status
Appveyor Build status Build status

Support, bugs and feature requests

Bugs and feature requests can be reported through the Gitub issue tracker (see open issues and closed issues).

You can submit your changes through a pull request.

There is no mailing-list specific to Boost Config, although you can use the general-purpose Boost mailing-list using the tag [config].

Development

Clone the whole boost project, which includes the individual Boost projects as submodules (see boost+git doc):

git clone https://github.com/boostorg/boost
cd boost
git submodule update --init

The Boost Config Library is located in libs/config/.

Running tests

First, make sure you are in libs/config/test. You can either run all the tests listed in Jamfile.v2 or run a single test:

../../../b2                        <- run all tests
../../../b2 config_info            <- single test

For developers

Please check the Guidelines for Boost Authors. from the full documentation.