early-access version 2853
This commit is contained in:
31
externals/vcpkg/ports/crashpad/crashpadConfig.cmake.in
vendored
Executable file
31
externals/vcpkg/ports/crashpad/crashpadConfig.cmake.in
vendored
Executable file
@@ -0,0 +1,31 @@
|
||||
# Compute the installation prefix relative to this file.
|
||||
get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
||||
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
||||
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
||||
if(_IMPORT_PREFIX STREQUAL "/")
|
||||
set(_IMPORT_PREFIX "")
|
||||
endif()
|
||||
|
||||
add_library(crashpad INTERFACE)
|
||||
add_library(crashpad::crashpad ALIAS crashpad)
|
||||
|
||||
set(CRASHPAD_LIBRARIES client util base)
|
||||
|
||||
if(WIN32)
|
||||
target_compile_definitions(crashpad INTERFACE NOMINMAX)
|
||||
elseif(APPLE)
|
||||
list(APPEND CRASHPAD_LIBRARIES ApplicationServices
|
||||
CoreFoundation Foundation IOKit Security bsm)
|
||||
endif()
|
||||
|
||||
foreach(LIB_NAME ${CRASHPAD_LIBRARIES})
|
||||
find_library(_LIB ${LIB_NAME})
|
||||
target_link_libraries(crashpad INTERFACE ${_LIB})
|
||||
unset(_LIB CACHE)
|
||||
endforeach()
|
||||
|
||||
find_package(ZLIB REQUIRED)
|
||||
target_link_libraries(crashpad INTERFACE ZLIB::ZLIB)
|
||||
|
||||
target_include_directories(crashpad
|
||||
INTERFACE ${_IMPORT_PREFIX}/include/crashpad)
|
Reference in New Issue
Block a user