2019-01-25 07:53:13 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO awslabs/aws-c-common
|
2023-02-02 04:52:03 +08:00
|
|
|
REF "v${VERSION}"
|
2023-08-04 01:14:36 +08:00
|
|
|
SHA512 4847b676d5fc72b22e0c8f1b432a40ba966b8e39c754a02ba856938b10aec68682c0da811b53c0f14fd897c9ce8928f7e7edd4e41c9f74176a7d08ee5cbc56f9
|
2019-01-25 07:53:13 +08:00
|
|
|
HEAD_REF master
|
2019-06-11 08:31:43 +08:00
|
|
|
PATCHES
|
|
|
|
disable-internal-crt-option.patch # Disable internal crt option because vcpkg contains crt processing flow
|
2019-01-25 07:53:13 +08:00
|
|
|
)
|
|
|
|
|
2021-09-15 10:06:34 +08:00
|
|
|
vcpkg_cmake_configure(
|
|
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
2021-11-23 06:18:07 +08:00
|
|
|
OPTIONS
|
|
|
|
-DBUILD_TESTING=FALSE
|
2019-01-25 07:53:13 +08:00
|
|
|
)
|
|
|
|
|
2021-09-15 10:06:34 +08:00
|
|
|
vcpkg_cmake_install()
|
2019-01-25 07:53:13 +08:00
|
|
|
|
2023-02-02 04:52:03 +08:00
|
|
|
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}/]] "/")
|
2019-01-25 07:53:13 +08:00
|
|
|
|
|
|
|
file(REMOVE_RECURSE
|
2021-09-15 10:06:34 +08:00
|
|
|
"${CURRENT_PACKAGES_DIR}/debug/include"
|
2023-02-02 04:52:03 +08:00
|
|
|
"${CURRENT_PACKAGES_DIR}/debug/lib/${PORT}"
|
|
|
|
"${CURRENT_PACKAGES_DIR}/lib/${PORT}"
|
|
|
|
)
|
2019-01-25 07:53:13 +08:00
|
|
|
|
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
|
2023-02-02 04:52:03 +08:00
|
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
|