2
0
mirror of https://github.com/boostorg/json.git synced 2026-02-20 14:52:14 +00:00
Files
json/CONTRIBUTING.md
Krystian Stasiowski 904252de0b Fix repo links
close #123
2020-07-03 11:51:58 -07:00

24 lines
514 B
Markdown

# 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
```