mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 07:09:02 +08:00
5f32a49551
* [sentry-native] Enable arm64 on macOS * [sentry-native] x-add-version * [sentry-native] Fix build issue with libcurl and crashpad for *-osx-dynamic * [sentry-native] x-add-version
66 lines
1.7 KiB
CMake
66 lines
1.7 KiB
CMake
if(NOT VCPKG_TARGET_IS_OSX)
|
|
vcpkg_fail_port_install(ON_ARCH "arm" "arm64" ON_TARGET "UWP")
|
|
endif()
|
|
|
|
vcpkg_download_distfile(ARCHIVE
|
|
URLS "https://github.com/getsentry/sentry-native/releases/download/0.4.9/sentry-native.zip"
|
|
FILENAME "sentry-native-0.4.9.zip"
|
|
SHA512 152e3c6cfc7a72421f088f0e9853f016b62e2c22c580edb6255355648d293a31507974bc5c12ef3c0cd721d07797b9948f53ecafa1482d3264504cafac1fe8a3
|
|
)
|
|
|
|
vcpkg_extract_source_archive_ex(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
ARCHIVE ${ARCHIVE}
|
|
NO_REMOVE_ONE_LEVEL
|
|
PATCHES
|
|
fix-warningC5105.patch
|
|
fix-config-cmake.patch
|
|
fix-libcurl.patch
|
|
)
|
|
|
|
if (NOT DEFINED SENTRY_BACKEND)
|
|
if(MSVC AND CMAKE_GENERATOR_TOOLSET MATCHES "_xp$")
|
|
set(SENTRY_BACKEND "breakpad")
|
|
elseif(APPLE OR WIN32)
|
|
set(SENTRY_BACKEND "crashpad")
|
|
elseif(LINUX)
|
|
set(SENTRY_BACKEND "breakpad")
|
|
else()
|
|
set(SENTRY_BACKEND "inproc")
|
|
endif()
|
|
endif()
|
|
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
PREFER_NINJA
|
|
OPTIONS
|
|
-DSENTRY_BUILD_TESTS=OFF
|
|
-DSENTRY_BUILD_EXAMPLES=OFF
|
|
-DSENTRY_BACKEND=${SENTRY_BACKEND}
|
|
)
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/sentry TARGET_PATH share/sentry)
|
|
|
|
if (SENTRY_BACKEND STREQUAL "crashpad")
|
|
vcpkg_copy_tools(
|
|
TOOL_NAMES crashpad_handler
|
|
AUTO_CLEAN
|
|
)
|
|
endif()
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
|
|
endif()
|
|
|
|
file(
|
|
INSTALL ${SOURCE_PATH}/LICENSE
|
|
DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT}
|
|
RENAME copyright
|
|
)
|