mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-04 09:19:07 +08:00
2bfe0fa1fc
* Add files via upload * [new port] avro-cpp * add boost-format * remove comments * remove comments * [rapidjson] Upgrade up to 2021-11-01 * [rapidjson] Upgrade up to 2021-11-01 * fix remarks * fix remarks * Update ports/rapidjson/portfile.cmake Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * Update ports/rapidjson/vcpkg.json Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * fix remarks * fix remarks * merge with master * add version * update hash * Update ports/rapidjson/portfile.cmake Co-authored-by: Frank <65999885+FrankXie05@users.noreply.github.com> * Update ports/rapidjson/portfile.cmake Co-authored-by: Frank <65999885+FrankXie05@users.noreply.github.com> * update hash * Update ports/rapidjson/vcpkg.json Co-authored-by: Frank <65999885+FrankXie05@users.noreply.github.com> * update version * update hash * update hash * update ms-gltf * update ms-gltf * update ms-gltf * update ms-gltf * update ms-gltf * update ms-gltf * update ms-gltf * update ms-gltf * Update ports/rapidjson/portfile.cmake Co-authored-by: Frank <65999885+FrankXie05@users.noreply.github.com> * update hash Co-authored-by: Alexander Smyslov <aleksandr.smyslov@libertexgroup.com> Co-authored-by: Smyslov Alexander Nikolayevich <aleksandr.smyslov@fxclub.com> Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> Co-authored-by: Frank <65999885+FrankXie05@users.noreply.github.com>
32 lines
1.5 KiB
CMake
32 lines
1.5 KiB
CMake
#header-only library
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO Tencent/rapidjson
|
|
REF 232389d4f1012dddec4ef84861face2d2ba85709 # accessed on 2022-06-28
|
|
SHA512 60bfbfe4884122aa9ae8755531da18ce4a793bb217c06474dd8c5afe0f2f5df280c40be2f303c1740f5af14c7ad5cc2a57f08de5205cc7ab27d6166b0f49130d
|
|
HEAD_REF master
|
|
)
|
|
|
|
# Use RapidJSON's own build process, skipping examples and tests
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
OPTIONS
|
|
-DRAPIDJSON_BUILD_DOC:BOOL=OFF
|
|
-DRAPIDJSON_BUILD_EXAMPLES:BOOL=OFF
|
|
-DRAPIDJSON_BUILD_TESTS:BOOL=OFF
|
|
-DCMAKE_INSTALL_DIR:STRING=cmake
|
|
)
|
|
vcpkg_cmake_install()
|
|
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH cmake)
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib" "${CURRENT_PACKAGES_DIR}/debug" "${CURRENT_PACKAGES_DIR}/share/doc")
|
|
|
|
file(READ "${CURRENT_PACKAGES_DIR}/share/rapidjson/RapidJSONConfig.cmake" _contents)
|
|
string(REPLACE "\${RapidJSON_SOURCE_DIR}" "\${RapidJSON_CMAKE_DIR}/../.." _contents "${_contents}")
|
|
string(REPLACE "set( RapidJSON_SOURCE_DIR \"${SOURCE_PATH}\")" "" _contents "${_contents}")
|
|
string(REPLACE "set( RapidJSON_DIR \"${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel\")" "" _contents "${_contents}")
|
|
file(WRITE "${CURRENT_PACKAGES_DIR}/share/rapidjson/RapidJSONConfig.cmake" "${_contents}\nset(RAPIDJSON_INCLUDE_DIRS \"\${RapidJSON_INCLUDE_DIRS}\")\n")
|
|
|
|
file(INSTALL "${SOURCE_PATH}/license.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|