74 lines
3.4 KiB
CMake
74 lines
3.4 KiB
CMake
@PACKAGE_INIT@
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/rerun_sdkTargets.cmake")
|
|
|
|
set(RERUN_LIB_DIR "${CMAKE_CURRENT_LIST_DIR}/../..")
|
|
|
|
if(@RERUN_INSTALL_RERUN_C@)
|
|
if(NOT TARGET rerun_c)
|
|
# Setup `rerun_c` (imported libraries can't be exported!)
|
|
add_library(rerun_c STATIC IMPORTED GLOBAL)
|
|
get_filename_component(RERUN_C_LIB_NAME "@RERUN_C_LIB_LOCATION@" NAME)
|
|
set_target_properties(rerun_c PROPERTIES IMPORTED_LOCATION "${RERUN_LIB_DIR}/${RERUN_C_LIB_NAME}")
|
|
if(APPLE)
|
|
target_link_libraries(rerun_c INTERFACE "-framework CoreFoundation" "-framework IOKit" "-framework Security")
|
|
elseif(UNIX) # if(LINUX) # CMake 3.25
|
|
target_link_libraries(rerun_c INTERFACE "-lm -ldl -pthread")
|
|
elseif(WIN32)
|
|
target_link_libraries(rerun_c INTERFACE Crypt32
|
|
Iphlpapi
|
|
Ncrypt
|
|
Netapi32
|
|
ntdll
|
|
Pdh
|
|
PowrProf
|
|
Psapi
|
|
Secur32
|
|
Userenv
|
|
ws2_32)
|
|
endif()
|
|
endif()
|
|
endif()
|
|
|
|
# Setup `rerun_arrow_target` (imported libraries can't be exported and package dependencies need to be re-declared)
|
|
# if(@RERUN_DOWNLOAD_AND_BUILD_ARROW@ AND NOT @RERUN_ARROW_LINK_SHARED@)
|
|
if(@RERUN_DOWNLOAD_AND_BUILD_ARROW@ AND NOT @RERUN_ARROW_LINK_SHARED@)
|
|
message(STATUS "Rerun is using bundled arrow library.")
|
|
|
|
if(NOT TARGET rerun_arrow_target)
|
|
add_library(rerun_arrow_target STATIC IMPORTED GLOBAL)
|
|
get_filename_component(RERUN_ARROW_LIB_NAME "@RERUN_ARROW_LIBRARY_FILE@" NAME)
|
|
set_target_properties(rerun_arrow_target PROPERTIES IMPORTED_LOCATION "${RERUN_LIB_DIR}/${RERUN_ARROW_LIB_NAME}")
|
|
endif()
|
|
|
|
# We have to explicitly opt in the arrow bundled dependencies, otherwise we're missing the symbols for mimalloc.
|
|
if(NOT TARGET arrow_targetBundledDeps)
|
|
add_library(arrow_targetBundledDeps STATIC IMPORTED)
|
|
get_filename_component(RERUN_ARROW_DEPS_LIB_NAME "@RERUN_ARROW_BUNDLED_DEPENDENCIES_FILE@" NAME)
|
|
set_target_properties(arrow_targetBundledDeps PROPERTIES IMPORTED_LOCATION "${RERUN_LIB_DIR}/${RERUN_ARROW_DEPS_LIB_NAME}")
|
|
target_link_libraries(rerun_arrow_target INTERFACE arrow_targetBundledDeps)
|
|
endif()
|
|
else()
|
|
if(@RERUN_DOWNLOAD_AND_BUILD_ARROW@ AND @RERUN_ARROW_LINK_SHARED@)
|
|
message(WARNING
|
|
"Rerun got built with an automatically downloaded version of libArrow,"
|
|
"but it was not bundled as part of the install since export of shared libArrow is not supported yet."
|
|
"Set RERUN_ARROW_LINK_SHARED to OFF during install or make sure find_package succeeds for Arrow."
|
|
)
|
|
endif()
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
find_dependency(Arrow)
|
|
|
|
message(STATUS "Rerun is using a system installed libArrow.")
|
|
|
|
if(NOT TARGET rerun_arrow_target)
|
|
if(@RERUN_ARROW_LINK_SHARED@)
|
|
add_library(rerun_arrow_target ALIAS Arrow::arrow_shared)
|
|
else()
|
|
add_library(rerun_arrow_target ALIAS Arrow::arrow_static)
|
|
endif()
|
|
endif()
|
|
endif()
|