-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
basic flow interface working with python
- Loading branch information
Showing
9 changed files
with
538 additions
and
349 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
set(RAPIDJSON_PREFIX ${CMAKE_BINARY_DIR}/RapidJSON) | ||
set(RAPIDJSON_INCLUDE_DIR "${RAPIDJSON_PREFIX}/src/RapidJSON/include") | ||
include(ExternalProject) | ||
ExternalProject_Add( | ||
RapidJSON | ||
PREFIX ${RAPIDJSON_PREFIX} | ||
DOWNLOAD_DIR ${THIRD_PARTY_DIR}/RapidJSON | ||
URL https://github.com/Tencent/rapidjson/archive/v1.1.0.tar.gz | ||
URL_MD5 badd12c511e081fec6c89c43a7027bce | ||
CMAKE_ARGS -DRAPIDJSON_BUILD_DOC:BOOL=OFF | ||
-DRAPIDJSON_BUILD_EXAMPLES:BOOL=OFF | ||
-DRAPIDJSON_BUILD_TESTS:BOOL=OFF | ||
INSTALL_COMMAND "" | ||
) | ||
|
||
LIST(APPEND SHOGUN_DEPENDS RapidJSON) |
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
Oops, something went wrong.