2016-10-27 02:59:46 +08:00
|
|
|
#header-only library
|
2016-09-20 23:58:09 +08:00
|
|
|
include(vcpkg_common_functions)
|
2018-03-03 04:28:34 +08:00
|
|
|
|
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO Tencent/rapidjson
|
2020-02-11 08:08:57 +08:00
|
|
|
REF 3b638e67150783303aebf1fc0789d6c44a026b53
|
|
|
|
SHA512 743ff74448c1ac31d1d03c90aa50cd6119b9e1723e618d0ca1f6021ec8a5282b34e1fc13b8577d7cf9eee064b6d9f809b0c92fdc09581c96dfd69cf7b7805223
|
2018-03-03 04:28:34 +08:00
|
|
|
HEAD_REF master
|
2016-09-19 11:50:08 +08:00
|
|
|
)
|
|
|
|
|
2018-04-27 14:16:47 +08:00
|
|
|
# Use RapidJSON's own build process, skipping examples and tests
|
|
|
|
vcpkg_configure_cmake(
|
|
|
|
SOURCE_PATH ${SOURCE_PATH}
|
2019-02-09 09:37:31 +08:00
|
|
|
PREFER_NINJA
|
2018-04-27 14:16:47 +08:00
|
|
|
OPTIONS
|
|
|
|
-DRAPIDJSON_BUILD_DOC:BOOL=OFF
|
|
|
|
-DRAPIDJSON_BUILD_EXAMPLES:BOOL=OFF
|
|
|
|
-DRAPIDJSON_BUILD_TESTS:BOOL=OFF
|
|
|
|
-DCMAKE_INSTALL_DIR:STRING=cmake
|
|
|
|
)
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
|
|
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH cmake)
|
|
|
|
|
2019-03-20 07:12:19 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib ${CURRENT_PACKAGES_DIR}/debug ${CURRENT_PACKAGES_DIR}/share/doc)
|
2018-04-27 14:16:47 +08:00
|
|
|
|
2019-07-17 12:49:49 +08:00
|
|
|
file(READ "${CURRENT_PACKAGES_DIR}/share/rapidjson/RapidJSONConfig.cmake" _contents)
|
|
|
|
string(REPLACE "\${RapidJSON_SOURCE_DIR}" "\${RapidJSON_CMAKE_DIR}/../.." _contents "${_contents}")
|
|
|
|
file(WRITE "${CURRENT_PACKAGES_DIR}/share/rapidjson/RapidJSONConfig.cmake" "${_contents}\nset(RAPIDJSON_INCLUDE_DIRS \"\${RapidJSON_INCLUDE_DIRS}\")\n")
|
2019-10-08 01:35:13 +08:00
|
|
|
|
|
|
|
file(INSTALL ${SOURCE_PATH}/license.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|
|
|
|
file(INSTALL ${CMAKE_CURRENT_LIST_DIR}/usage DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT})
|
|
|
|
|