mirror of https://github.com/AlexeyAB/darknet.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
3.5 KiB
83 lines
3.5 KiB
# Distributed under the OSI-approved BSD 3-Clause License. |
|
# Copyright Stefano Sinigardi |
|
|
|
#.rst: |
|
# FindPThreads |
|
# ------------ |
|
# |
|
# Find the PThreads includes and library. |
|
# |
|
# Result Variables |
|
# ^^^^^^^^^^^^^^^^ |
|
# |
|
# This module defines the following variables: |
|
# |
|
# ``PThreads_windows_FOUND`` |
|
# True if PThreads_windows library found |
|
# |
|
# ``PThreads_windows_INCLUDE_DIR`` |
|
# Location of PThreads_windows headers |
|
# |
|
# ``PThreads_windows_LIBRARY`` |
|
# List of libraries to link with when using PThreads_windows |
|
# |
|
|
|
include(${CMAKE_ROOT}/Modules/FindPackageHandleStandardArgs.cmake) |
|
include(${CMAKE_ROOT}/Modules/SelectLibraryConfigurations.cmake) |
|
|
|
if(NOT PThreads_windows_INCLUDE_DIR) |
|
find_path(PThreads_windows_INCLUDE_DIR NAMES pthread.h) |
|
endif() |
|
|
|
# Allow libraries to be set manually |
|
if(NOT PThreads_windows_LIBRARY) |
|
find_library(PThreads_windows_LIBRARY_RELEASE NAMES pthreadsVC2) |
|
find_library(PThreads_windows_LIBRARY_DEBUG NAMES pthreadsVC2d) |
|
select_library_configurations(PThreads_windows) |
|
endif() |
|
|
|
find_package_handle_standard_args(PThreads_windows DEFAULT_MSG PThreads_windows_LIBRARY PThreads_windows_INCLUDE_DIR) |
|
mark_as_advanced(PThreads_windows_INCLUDE_DIR PThreads_windows_LIBRARY) |
|
|
|
|
|
# Register imported libraries: |
|
# 1. If we can find a Windows .dll file (or if we can find both Debug and |
|
# Release libraries), we will set appropriate target properties for these. |
|
# 2. However, for most systems, we will only register the import location and |
|
# include directory. |
|
|
|
# Look for dlls, for Release and Debug libraries. |
|
if(WIN32) |
|
string( REPLACE ".lib" ".dll" PThreads_windows_LIBRARY_RELEASE_DLL "${PThreads_windows_LIBRARY_RELEASE}" ) |
|
string( REPLACE ".lib" ".dll" PThreads_windows_LIBRARY_DEBUG_DLL "${PThreads_windows_LIBRARY_DEBUG}" ) |
|
endif() |
|
|
|
if( PThreads_windows_FOUND AND NOT TARGET PThreads_windows::PThreads_windows ) |
|
if( EXISTS "${PThreads_windows_LIBRARY_RELEASE_DLL}" ) |
|
add_library( PThreads_windows::PThreads_windows SHARED IMPORTED ) |
|
set_target_properties( PThreads_windows::PThreads_windows PROPERTIES |
|
IMPORTED_LOCATION_RELEASE "${PThreads_windows_LIBRARY_RELEASE_DLL}" |
|
IMPORTED_IMPLIB "${PThreads_windows_LIBRARY_RELEASE}" |
|
INTERFACE_INCLUDE_DIRECTORIES "${PThreads_windows_INCLUDE_DIR}" |
|
IMPORTED_CONFIGURATIONS Release |
|
IMPORTED_LINK_INTERFACE_LANGUAGES "C" ) |
|
if( EXISTS "${PThreads_windows_LIBRARY_DEBUG_DLL}" ) |
|
set_property( TARGET PThreads_windows::PThreads_windows APPEND PROPERTY IMPORTED_CONFIGURATIONS Debug ) |
|
set_target_properties( PThreads_windows::PThreads_windows PROPERTIES |
|
IMPORTED_LOCATION_DEBUG "${PThreads_windows_LIBRARY_DEBUG_DLL}" |
|
IMPORTED_IMPLIB_DEBUG "${PThreads_windows_LIBRARY_DEBUG}" ) |
|
endif() |
|
else() |
|
add_library( PThreads_windows::PThreads_windows UNKNOWN IMPORTED ) |
|
set_target_properties( PThreads_windows::PThreads_windows PROPERTIES |
|
IMPORTED_LOCATION_RELEASE "${PThreads_windows_LIBRARY}" |
|
INTERFACE_INCLUDE_DIRECTORIES "${PThreads_windows_INCLUDE_DIR}" |
|
IMPORTED_CONFIGURATIONS Release |
|
IMPORTED_LINK_INTERFACE_LANGUAGES "C" ) |
|
if( EXISTS "${PThreads_windows_LIBRARY_DEBUG}" ) |
|
set_property( TARGET PThreads_windows::PThreads_windows APPEND PROPERTY IMPORTED_CONFIGURATIONS Debug ) |
|
set_target_properties( PThreads_windows::PThreads_windows PROPERTIES |
|
IMPORTED_LOCATION_DEBUG "${PThreads_windows_LIBRARY_DEBUG}" ) |
|
endif() |
|
endif() |
|
endif()
|
|
|