mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-19 13:07:49 +08:00
88818ef68c
* Add cpptrace port * Add version entries * Update portfile * Update * Update * Update version number * Update version number * x * version * Update sha * Update sha * Cpptrace update * Cpptrace update * Try to resume work on adding cpptace. Incorporates feedback. * baselines * Update config path * Add a patch for 32-bit windows * Another patch * Fix patch * Fix patch again * Try to fix windows warnings * Try to fix static build * See if CI will run if I push again * Try to fix issue * Update patches * update port version * add prefixes back * Bump hash * Patch * Bump hash * Patch * Bump hash * Patch * Bump hash * Patch * Bump hash * Specify no UWP * Bump hash * Update description * Bump hash * Update ports/cpptrace/portfile.cmake Co-authored-by: Billy O'Neal <bion@microsoft.com> * Update patches * Bump hash * Bump to cpptrace 0.2.1 * Bump hash * Add patch * Bump hash * Try to handle zlib better * Bump hash * Fix vcpkg.json * Bump hash * fix * Bump hash * Bump baseline * patch * Bump hash * Update patch and usage * Bump hash * fixes * Bump hash * update * Bump hash * Update ports/cpptrace/v0.2.1-patches.patch Co-authored-by: Kai Pastor <dg0yt@darc.de> * Try to use libdwarf via vcpkg * Bump * Fix * Bump * Update libdwarf target name * Bump * Try fix * Bump * Try fix * Bump * Add patches for libdwarf headers * bump * Split up patches * Bump * Trim patch * Bump --------- Co-authored-by: Billy O'Neal <bion@microsoft.com> Co-authored-by: Kai Pastor <dg0yt@darc.de>
33 lines
942 B
CMake
33 lines
942 B
CMake
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO jeremy-rifkin/cpptrace
|
|
REF "v${VERSION}"
|
|
SHA512 207b01d8b9114806a98f04b769082ba9ef3c66bad11972279b337ec794a14839715aee9b1f22883208e42b23289f1c8b7c842f2ac1c9973d8e2de48621623760
|
|
HEAD_REF main
|
|
PATCHES
|
|
libdwarf_fixes.patch
|
|
uintptr_fix.patch
|
|
runtime_destination.patch
|
|
)
|
|
|
|
vcpkg_list(SET options -DCPPTRACE_USE_SYSTEM_LIBDWARF=On)
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
vcpkg_list(APPEND options -DCPPTRACE_STATIC=On)
|
|
endif()
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
OPTIONS ${options}
|
|
)
|
|
|
|
vcpkg_cmake_install()
|
|
vcpkg_cmake_config_fixup(
|
|
PACKAGE_NAME "cpptrace"
|
|
CONFIG_PATH "lib/cmake/cpptrace"
|
|
)
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|
|
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
|