-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce new ECSTASY_SERIALIZER_JSON option adding RapidJson as depe…
…ndency Linked: #164
- Loading branch information
1 parent
90fe105
commit 9394936
Showing
8 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
|
||
CMAKE_MINIMUM_REQUIRED(VERSION 3.15) | ||
|
||
if(NOT rapidjson_FOUND) | ||
include(FetchContent) | ||
|
||
FetchContent_Declare(rapidjson | ||
GIT_REPOSITORY https://github.com/Tencent/rapidjson | ||
GIT_TAG master | ||
) | ||
|
||
FetchContent_GetProperties(rapidjson) | ||
|
||
if(NOT rapidjson_POPULATED) | ||
SET(FETCHCONTENT_QUIET NO) | ||
FetchContent_Populate(rapidjson) | ||
SET(RAPIDJSON_INCLUDE_PATH "${rapidjson_SOURCE_DIR}/include") | ||
SET(rapidjson_FOUND TRUE) | ||
endif() | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters