mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-01 12:31:37 +08:00
b61706e96c
* [aws-c-http] update to 0.7.14 * [aws-c-http] update to 0.7.14 * [aws-c-mqtt] update to 0.9.9 * [aws-c-mqtt] update to 0.9.9 * [aws-c-s3] update to 0.3.23 * [aws-c-s3] update to 0.3.23 * [aws-c-auth] update to 0.7.6 * [aws-c-auth] update to 0.7.6 * [aws-crt-cpp] update to 0.24.5 * [aws-crt-cpp] update to 0.24.5 * [aws-sdk-cpp] update to 1.11.200 * [aws-sdk-cpp] update to 1.11.200 * [aws-c-common] update to 0.9.8 * [aws-c-common] update to 0.9.8 * [aws-c-common] update to 0.9.9 * [aws-c-common] update to 0.9.9 * [aws-c-s3] update to 0.3.24 * [aws-c-s3] update to 0.3.24 * [aws-crt-cpp] update to 0.24.7 * [aws-crt-cpp] update to 0.24.7 * [aws-sdk-cpp] update to 1.11.201 * [aws-sdk-cpp] update to 1.11.201
36 lines
1.2 KiB
CMake
36 lines
1.2 KiB
CMake
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO awslabs/aws-c-common
|
|
REF "v${VERSION}"
|
|
SHA512 4e9df8edeefa7765fb68c25b36a72dd389ef3cf99ec0d37661f527a85f36d59f87fe6f0d2c7c52132abe45062ac7eb74513552d98b72c5aadb074624b1eb741f
|
|
HEAD_REF master
|
|
PATCHES
|
|
disable-internal-crt-option.patch # Disable internal crt option because vcpkg contains crt processing flow
|
|
)
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
OPTIONS
|
|
-DBUILD_TESTING=FALSE
|
|
)
|
|
|
|
vcpkg_cmake_install()
|
|
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake) # central macros
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
|
|
|
string(REPLACE "dynamic" "shared" subdir "${VCPKG_LIBRARY_LINKAGE}")
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH "lib/${PORT}/cmake/${subdir}" DO_NOT_DELETE_PARENT_CONFIG_PATH)
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH "lib/${PORT}/cmake")
|
|
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/share/${PORT}/${PORT}-config.cmake" [[/${type}/]] "/")
|
|
|
|
file(REMOVE_RECURSE
|
|
"${CURRENT_PACKAGES_DIR}/debug/include"
|
|
"${CURRENT_PACKAGES_DIR}/debug/lib/${PORT}"
|
|
"${CURRENT_PACKAGES_DIR}/lib/${PORT}"
|
|
)
|
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
|