mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-04 07:41:47 +08:00
cb239b92c0
It looks like github changed the version (or the generally the way) they do tars, causing some hash mismatches. This fixes the affected ports.
53 lines
1.4 KiB
CMake
53 lines
1.4 KiB
CMake
include(vcpkg_common_functions)
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO Microsoft/cpprestsdk
|
|
REF v2.9.0
|
|
SHA512 7f6af05e2aaf49fb5ba24f4fac43b7787345d46913831504925cefc60d1b62e38457e1d628d5de8b0db891b59716d2bfe63a494ca0b337d67fc9ca5447a5ba9b
|
|
HEAD_REF master
|
|
)
|
|
if(NOT VCPKG_USE_HEAD_VERSION)
|
|
vcpkg_apply_patches(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
PATCHES
|
|
${CMAKE_CURRENT_LIST_DIR}/0001_cmake.patch
|
|
${CMAKE_CURRENT_LIST_DIR}/0002_no_websocketpp_in_uwp.patch
|
|
)
|
|
endif()
|
|
|
|
set(OPTIONS)
|
|
if(NOT VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
|
SET(WEBSOCKETPP_PATH "${CURRENT_INSTALLED_DIR}/share/websocketpp")
|
|
list(APPEND OPTIONS
|
|
-DWEBSOCKETPP_CONFIG=${WEBSOCKETPP_PATH}
|
|
-DWEBSOCKETPP_CONFIG_VERSION=${WEBSOCKETPP_PATH})
|
|
endif()
|
|
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}/Release
|
|
PREFER_NINJA
|
|
OPTIONS
|
|
${OPTIONS}
|
|
-DBUILD_TESTS=OFF
|
|
-DBUILD_SAMPLES=OFF
|
|
-DCPPREST_EXCLUDE_WEBSOCKETS=OFF
|
|
-DCPPREST_EXPORT_DIR=share/cpprestsdk
|
|
OPTIONS_DEBUG
|
|
-DCASA_INSTALL_HEADERS=OFF
|
|
-DCPPREST_INSTALL_HEADERS=OFF
|
|
)
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
if(VCPKG_USE_HEAD_VERSION)
|
|
vcpkg_fixup_cmake_targets()
|
|
endif()
|
|
|
|
file(INSTALL
|
|
${SOURCE_PATH}/license.txt
|
|
DESTINATION ${CURRENT_PACKAGES_DIR}/share/cpprestsdk RENAME copyright)
|
|
|
|
vcpkg_copy_pdbs()
|
|
|