vcpkg/ports/aws-c-http/portfile.cmake
Jia Yue Hua b61706e96c
[aws-c-http,aws-c-auth,aws-c-s3,aws-c-mqtt,aws-c-common,aws-sdk-cpp,aws-crt-cpp] update to 0.7.14, 0.7.6, 0.3.24, 0.9.9, 0.9.9,1.11.201,0.24.7 (#35070)
* [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
2023-11-15 16:02:14 -08:00

33 lines
1.1 KiB
CMake

vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO awslabs/aws-c-http
REF "v${VERSION}"
SHA512 205cf1cc4b766fd42cfca6ab84974e0797f2a52f8cdf64fed0c4327a2b70c251e5c9561b1cf714cbe4b7ef87092a094830071e6621bd0e0e1684b2e66ea718e2
HEAD_REF master
)
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
"-DCMAKE_MODULE_PATH=${CURRENT_INSTALLED_DIR}/share/aws-c-common" # use extra cmake files
-DBUILD_TESTING=FALSE
)
vcpkg_cmake_install()
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}/debug/share"
"${CURRENT_PACKAGES_DIR}/lib/${PORT}"
)
vcpkg_copy_pdbs()
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")