66d54af3
Hu Chunming
提交_GLIBCXX_USE_CX...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
```
|