Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
.circleci/ | 25-Apr-2025 | - | 58 | 56 | ||
.drone/ | 25-Apr-2025 | - | 59 | 33 | ||
.github/workflows/ | 25-Apr-2025 | - | 209 | 202 | ||
checks/ | 25-Apr-2025 | - | 6,254 | 3,810 | ||
doc/ | 25-Apr-2025 | - | 2,964 | 2,492 | ||
include/boost/ | 25-Apr-2025 | - | 13,069 | 7,776 | ||
meta/ | 25-Apr-2025 | - | 15 | 14 | ||
test/ | 25-Apr-2025 | - | 35,990 | 22,551 | ||
tools/ | 25-Apr-2025 | - | 1,106 | 895 | ||
.drone.star | D | 25-Apr-2025 | 9.1 KiB | 58 | 54 | |
.gitattributes | D | 25-Apr-2025 | 3.8 KiB | 97 | 91 | |
.gitignore | D | 25-Apr-2025 | 24 | 2 | 1 | |
CMakeLists.txt | D | 25-Apr-2025 | 1 KiB | 35 | 26 | |
README.md | D | 25-Apr-2025 | 2.6 KiB | 44 | 28 | |
appveyor.yml | D | 25-Apr-2025 | 2.6 KiB | 74 | 62 | |
configure | D | 25-Apr-2025 | 102.9 KiB | 3,895 | 3,097 |
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| Drone | [](https://drone.cpp.al/boostorg/config) | [](https://drone.cpp.al/boostorg/config) | 11| Travis | [](https://travis-ci.org/boostorg/config) | [](https://travis-ci.org/boostorg/config) | 12| Appveyor | [](https://ci.appveyor.com/project/jzmaddock/config/branch/master) | [](https://ci.appveyor.com/project/jzmaddock/config/branch/develop) | 13 14## Support, bugs and feature requests ## 15 16Bugs and feature requests can be reported through the [Gitub issue tracker](https://github.com/boostorg/config/issues) 17(see [open issues](https://github.com/boostorg/config/issues) and 18[closed issues](https://github.com/boostorg/config/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed)). 19 20You can submit your changes through a [pull request](https://github.com/boostorg/config/pulls). 21 22There 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]. 23 24 25## Development ## 26 27Clone the whole boost project, which includes the individual Boost projects as submodules ([see boost+git doc](https://github.com/boostorg/boost/wiki/Getting-Started)): 28 29 git clone https://github.com/boostorg/boost 30 cd boost 31 git submodule update --init 32 33The Boost Config Library is located in `libs/config/`. 34 35### Running tests ### 36First, make sure you are in `libs/config/test`. 37You can either run all the tests listed in `Jamfile.v2` or run a single test: 38 39 ../../../b2 <- run all tests 40 ../../../b2 config_info <- single test 41 42### For developers ### 43Please 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. 44