mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 15:11:49 +08:00
f138027a70
* c-ares: bump to 1.19 and make it build on uwp. guard-imported-lib.patch got upstreamed, no longer necessary. * drogon: disable uwp support. It depends on c-ares which now supports uwp which means that this port needs to be explicitly disabled.
46 lines
1.5 KiB
CMake
46 lines
1.5 KiB
CMake
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO c-ares/c-ares
|
|
REF cares-1_19_0
|
|
SHA512 d6bd7183b9ddf418222357ca61e3ffe0a3e49cbd5d83046bb76146e23bb578b5c7e4a5d89e1c427e7163880323de8ee0962ba75c571102efdf8c0b5742e28f82
|
|
HEAD_REF main
|
|
PATCHES
|
|
avoid-docs.patch
|
|
fix-uwp.patch
|
|
)
|
|
|
|
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" BUILD_STATIC)
|
|
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" BUILD_SHARED)
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
OPTIONS
|
|
-DCARES_STATIC=${BUILD_STATIC}
|
|
-DCARES_SHARED=${BUILD_SHARED}
|
|
-DCARES_BUILD_TOOLS=OFF
|
|
-DCARES_BUILD_TESTS=OFF
|
|
-DCARES_BUILD_CONTAINER_TESTS=OFF
|
|
)
|
|
|
|
vcpkg_cmake_install()
|
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/c-ares)
|
|
vcpkg_fixup_pkgconfig()
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
vcpkg_replace_string(
|
|
"${CURRENT_PACKAGES_DIR}/include/ares.h"
|
|
"#ifdef CARES_STATICLIB" "#if 1"
|
|
)
|
|
endif()
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static" OR NOT VCPKG_TARGET_IS_WINDOWS)
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin") # Empty folders
|
|
endif()
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include" "${CURRENT_PACKAGES_DIR}/debug/share")
|
|
|
|
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|
|
file(INSTALL "${SOURCE_PATH}/LICENSE.md" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|