Adding JSON parsing helpers to Utilities.

This commit is contained in:
Ian Roddis
2021-08-02 11:31:46 -03:00
parent f2f3d22574
commit 54e8170c68
9 changed files with 136 additions and 14 deletions

View File

@@ -2,7 +2,7 @@ include(ExternalProject)
# Download RapidJSON
ExternalProject_Add(
rapidjson
PREFIX "vendor/rapidjson"
PREFIX "third_party/rapidjson"
GIT_REPOSITORY "https://github.com/Tencent/rapidjson.git"
GIT_TAG f54b0e47a08782a6131cc3d60f94d038fa6e0a51
TIMEOUT 10
@@ -18,4 +18,4 @@ ExternalProject_Add(
# Prepare RapidJSON (RapidJSON is a header-only library)
ExternalProject_Get_Property(rapidjson source_dir)
set(RAPIDJSON_INCLUDE_DIR ${source_dir}/include)
set(RAPIDJSON_INCLUDE_DIR ${source_dir}/include)