Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
checks/ | 12-May-2024 | - | 6,199 | 3,756 | ||
doc/ | 12-May-2024 | - | 11,584 | 11,106 | ||
meta/ | 12-May-2024 | - | 14 | 13 | ||
test/ | 12-May-2024 | - | 34,684 | 21,799 | ||
tools/ | 12-May-2024 | - | 1,003 | 812 | ||
CMakeLists.txt | D | 12-May-2024 | 1 KiB | 35 | 26 | |
README.md | D | 12-May-2024 | 2.3 KiB | 43 | 27 | |
configure | D | 12-May-2024 | 102.9 KiB | 3,895 | 3,097 | |
index.html | D | 12-May-2024 | 558 | 16 | 13 |
README.md
1Boost Config Library 2============================ 3 4This library provides configuration support for the Boost C++ libraries. 5 6The full documentation is available on [boost.org](http://www.boost.org/doc/libs/release/libs/config/index.html). 7 8| | Master | Develop | 9|------------------|----------|-------------| 10| Travis | [](https://travis-ci.org/boostorg/config) | [](https://travis-ci.org/boostorg/config) | 11| Appveyor | [](https://ci.appveyor.com/project/jzmaddock/config/branch/master) | [](https://ci.appveyor.com/project/jzmaddock/config/branch/develop) | 12 13## Support, bugs and feature requests ## 14 15Bugs and feature requests can be reported through the [Gitub issue tracker](https://github.com/boostorg/config/issues) 16(see [open issues](https://github.com/boostorg/config/issues) and 17[closed issues](https://github.com/boostorg/config/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed)). 18 19You can submit your changes through a [pull request](https://github.com/boostorg/config/pulls). 20 21There is no mailing-list specific to Boost Config, although you can use the general-purpose Boost [mailing-list](http://lists.boost.org/mailman/listinfo.cgi/boost-users) using the tag [config]. 22 23 24## Development ## 25 26Clone the whole boost project, which includes the individual Boost projects as submodules ([see boost+git doc](https://github.com/boostorg/boost/wiki/Getting-Started)): 27 28 git clone https://github.com/boostorg/boost 29 cd boost 30 git submodule update --init 31 32The Boost Config Library is located in `libs/config/`. 33 34### Running tests ### 35First, make sure you are in `libs/config/test`. 36You can either run all the tests listed in `Jamfile.v2` or run a single test: 37 38 ../../../b2 <- run all tests 39 ../../../b2 config_info <- single test 40 41### For developers ### 42Please check the [Guidelines for Boost Authors](http://www.boost.org/doc/libs/release/libs/config/doc/html/boost_config/guidelines_for_boost_authors.html). from the full documentation. 43