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-10-14 04:17:32 +08:00
|
|
|
REF ce81bc9edfe773667a7a4454ba81dac72ed4364c # accessed on 2020-09-14
|
|
|
|
SHA512 a1bbc5668fca9ee34b05ae424a5177b66beaf7b3b4cdfbb3cb067fc58ce91717b4030e2c268ad32e4aa4a7ef59ab5e3aae05ff71d0d91d463eafa7d2e077df07
|
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})
|
|
|
|
|