diff options
Diffstat (limited to 'src/boost/libs/json/CONTRIBUTING.md')
-rw-r--r-- | src/boost/libs/json/CONTRIBUTING.md | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/boost/libs/json/CONTRIBUTING.md b/src/boost/libs/json/CONTRIBUTING.md new file mode 100644 index 000000000..84c179c5d --- /dev/null +++ b/src/boost/libs/json/CONTRIBUTING.md @@ -0,0 +1,23 @@ +# Contributing to Boost.JSON + +## Quickstart + +Here is minimal sequence of steps required to prepare development environment: + +1. Download Boost superproject +2. Download Boost.JSON +3. Bootstrap Boost +4. Build Boost.JSON tests, benchmarks and examples + +``` +git clone --recurse-submodules --jobs 8 https://github.com/boostorg/boost.git +cd boost/libs +git clone --recurse-submodules https://github.com/cppalliance/json.git +cd .. +./bootstrap.sh +./b2 headers +cd libs/json +../../b2 test +../../b2 bench +../../b2 example +``` |