From 0096b45ee87a3a6575ccd79e8b6717577a5b7b23 Mon Sep 17 00:00:00 2001 From: Xinda Huang Date: Wed, 11 Aug 2021 12:51:29 +0800 Subject: [PATCH] feat(third_party): add json --- .gitmodules | 3 +++ third_party/Json | 1 + third_party/prepare.sh | 1 + 3 files changed, 5 insertions(+) create mode 160000 third_party/Json diff --git a/.gitmodules b/.gitmodules index f041c6f5..afe05acf 100644 --- a/.gitmodules +++ b/.gitmodules @@ -43,3 +43,6 @@ [submodule "third_party/range-v3"] path = third_party/range-v3 url = https://github.com/ericniebler/range-v3.git +[submodule "third_party/Json"] + path = third_party/Json + url = https://github.com/nlohmann/json.git diff --git a/third_party/Json b/third_party/Json new file mode 160000 index 00000000..db78ac1d --- /dev/null +++ b/third_party/Json @@ -0,0 +1 @@ +Subproject commit db78ac1d7716f56fc9f1b030b715f872f93964e4 diff --git a/third_party/prepare.sh b/third_party/prepare.sh index 5fe60805..85e6c3cb 100755 --- a/third_party/prepare.sh +++ b/third_party/prepare.sh @@ -29,6 +29,7 @@ git submodule update --init protobuf git submodule update --init flatbuffers git submodule update --init gtest git submodule update --init cutlass +git submodule update --init Json git submodule update --init cpuinfo -- GitLab