2
0
mirror of https://github.com/boostorg/json.git synced 2026-01-19 04:12:14 +00:00

benchmarked libraries are not submodules

fix #70, close #204
This commit is contained in:
Krystian Stasiowski
2020-08-24 17:37:43 -04:00
committed by Vinnie Falco
parent 99ceedaa34
commit f974bf02ed
6 changed files with 11 additions and 8 deletions

6
.gitmodules vendored
View File

@@ -1,6 +0,0 @@
[submodule "bench/lib/nlohmann"]
path = bench/lib/nlohmann
url = https://github.com/nlohmann/json.git
[submodule "bench/lib/rapidjson"]
path = bench/lib/rapidjson
url = https://github.com/Tencent/rapidjson.git

1
bench/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
lib/

6
bench/README.md Normal file
View File

@@ -0,0 +1,6 @@
# Boost.JSON Benchmarks
To run the benchmarks first run clone.sh to
fetch the third party repositories. Then run
the bench program with no arguments for a
list of command line options.

4
bench/clone.sh Executable file
View File

@@ -0,0 +1,4 @@
mkdir -p lib
cd lib
git clone --depth 1 https://github.com/Tencent/rapidjson.git rapidjson
git clone --depth 1 https://github.com/nlohmann/json.git nlohmann