|
|
@ -65,11 +65,10 @@ The following cache variables may also be set:
|
|
|
|
Debug and Release variants are found separately.
|
|
|
|
Debug and Release variants are found separately.
|
|
|
|
#]=======================================================================]
|
|
|
|
#]=======================================================================]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cmake_policy(PUSH)
|
|
|
|
|
|
|
|
cmake_policy(SET CMP0057 NEW) # if IN_LIST
|
|
|
|
|
|
|
|
|
|
|
|
set(_TIFF_args)
|
|
|
|
set(_TIFF_args)
|
|
|
|
if (TIFF_FIND_QUIETLY)
|
|
|
|
|
|
|
|
list(APPEND _TIFF_args
|
|
|
|
|
|
|
|
QUIET)
|
|
|
|
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
if (TIFF_FIND_VERSION)
|
|
|
|
if (TIFF_FIND_VERSION)
|
|
|
|
list(APPEND _TIFF_args
|
|
|
|
list(APPEND _TIFF_args
|
|
|
|
"${TIFF_FIND_VERSION}")
|
|
|
|
"${TIFF_FIND_VERSION}")
|
|
|
@ -100,7 +99,8 @@ if (_TIFF_component_opt)
|
|
|
|
OPTIONAL_COMPONENTS "${_TIFF_component_opt}")
|
|
|
|
OPTIONAL_COMPONENTS "${_TIFF_component_opt}")
|
|
|
|
endif ()
|
|
|
|
endif ()
|
|
|
|
unset(_TIFF_component_opt)
|
|
|
|
unset(_TIFF_component_opt)
|
|
|
|
find_package(tiff CONFIG ${_TIFF_args})
|
|
|
|
# Always find with QUIET to avoid noise when it is not found.
|
|
|
|
|
|
|
|
find_package(tiff CONFIG QUIET ${_TIFF_args})
|
|
|
|
unset(_TIFF_args)
|
|
|
|
unset(_TIFF_args)
|
|
|
|
if (tiff_FOUND)
|
|
|
|
if (tiff_FOUND)
|
|
|
|
if (NOT TARGET TIFF::TIFF)
|
|
|
|
if (NOT TARGET TIFF::TIFF)
|
|
|
@ -110,15 +110,86 @@ if (tiff_FOUND)
|
|
|
|
endif ()
|
|
|
|
endif ()
|
|
|
|
get_property(TIFF_INCLUDE_DIRS TARGET TIFF::tiff PROPERTY INTERFACE_INCLUDE_DIRECTORIES)
|
|
|
|
get_property(TIFF_INCLUDE_DIRS TARGET TIFF::tiff PROPERTY INTERFACE_INCLUDE_DIRECTORIES)
|
|
|
|
get_property(TIFF_LIBRARIES TARGET TIFF::tiff PROPERTY INTERFACE_LINK_LIBRARIES)
|
|
|
|
get_property(TIFF_LIBRARIES TARGET TIFF::tiff PROPERTY INTERFACE_LINK_LIBRARIES)
|
|
|
|
get_property(_TIFF_location TARGET TIFF::tiff PROPERTY LOCATION)
|
|
|
|
get_property(_TIFF_location TARGET TIFF::tiff PROPERTY IMPORTED_IMPLIB)
|
|
|
|
list(APPEND TIFF_LIBRARIES
|
|
|
|
if (NOT _TIFF_location)
|
|
|
|
|
|
|
|
get_property(_TIFF_location_release TARGET TIFF::tiff PROPERTY IMPORTED_IMPLIB_RELEASE)
|
|
|
|
|
|
|
|
if (NOT _TIFF_location_release)
|
|
|
|
|
|
|
|
get_property(_TIFF_location_release TARGET TIFF::tiff PROPERTY IMPORTED_IMPLIB_RELWITHDEBINFO)
|
|
|
|
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
get_property(_TIFF_location_debug TARGET TIFF::tiff PROPERTY IMPORTED_IMPLIB_DEBUG)
|
|
|
|
|
|
|
|
if (_TIFF_location_release AND _TIFF_location_debug)
|
|
|
|
|
|
|
|
set(_TIFF_location
|
|
|
|
|
|
|
|
optimized "${_TIFF_location_release}"
|
|
|
|
|
|
|
|
debug "${_TIFF_location_debug}")
|
|
|
|
|
|
|
|
elseif (_TIFF_location_release)
|
|
|
|
|
|
|
|
set(_TIFF_location "${_TIFF_location_release}")
|
|
|
|
|
|
|
|
elseif (_TIFF_location_debug)
|
|
|
|
|
|
|
|
set(_TIFF_location "${_TIFF_location_debug}")
|
|
|
|
|
|
|
|
else ()
|
|
|
|
|
|
|
|
get_property(_TIFF_location_release TARGET TIFF::tiff PROPERTY LOCATION_RELEASE)
|
|
|
|
|
|
|
|
if (NOT _TIFF_location_release)
|
|
|
|
|
|
|
|
get_property(_TIFF_location_release TARGET TIFF::tiff PROPERTY LOCATION_RELWITHDEBINFO)
|
|
|
|
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
get_property(_TIFF_location_debug TARGET TIFF::tiff PROPERTY LOCATION_DEBUG)
|
|
|
|
|
|
|
|
if (_TIFF_location_release AND _TIFF_location_debug)
|
|
|
|
|
|
|
|
set(_TIFF_location
|
|
|
|
|
|
|
|
optimized "${_TIFF_location_release}"
|
|
|
|
|
|
|
|
debug "${_TIFF_location_debug}")
|
|
|
|
|
|
|
|
elseif (_TIFF_location_release)
|
|
|
|
|
|
|
|
set(_TIFF_location "${_TIFF_location_release}")
|
|
|
|
|
|
|
|
elseif (_TIFF_location_debug)
|
|
|
|
|
|
|
|
set(_TIFF_location "${_TIFF_location_debug}")
|
|
|
|
|
|
|
|
else ()
|
|
|
|
|
|
|
|
get_property(_TIFF_location TARGET TIFF::tiff PROPERTY LOCATION)
|
|
|
|
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
unset(_TIFF_location_release)
|
|
|
|
|
|
|
|
unset(_TIFF_location_debug)
|
|
|
|
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
list(INSERT TIFF_LIBRARIES 0
|
|
|
|
"${_TIFF_location}")
|
|
|
|
"${_TIFF_location}")
|
|
|
|
unset(_TIFF_location)
|
|
|
|
unset(_TIFF_location)
|
|
|
|
set(TIFF_FOUND 1)
|
|
|
|
set(TIFF_FOUND 1)
|
|
|
|
if("CXX" IN_LIST TIFF_FIND_COMPONENTS)
|
|
|
|
if("CXX" IN_LIST TIFF_FIND_COMPONENTS)
|
|
|
|
if (TARGET TIFF::CXX)
|
|
|
|
if (TARGET TIFF::CXX)
|
|
|
|
get_property(_TIFF_CXX_location TARGET TIFF::CXX PROPERTY LOCATION)
|
|
|
|
get_property(_TIFF_CXX_location TARGET TIFF::CXX PROPERTY IMPORTED_IMPLIB)
|
|
|
|
list(APPEND TIFF_LIBRARIES ${_TIFF_CXX_location})
|
|
|
|
if (NOT _TIFF_CXX_location)
|
|
|
|
|
|
|
|
get_property(_TIFF_CXX_location_release TARGET TIFF::CXX PROPERTY IMPORTED_IMPLIB_RELEASE)
|
|
|
|
|
|
|
|
if (NOT _TIFF_CXX_location_release)
|
|
|
|
|
|
|
|
get_property(_TIFF_CXX_location_release TARGET TIFF::CXX PROPERTY IMPORTED_IMPLIB_RELWITHDEBINFO)
|
|
|
|
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
get_property(_TIFF_CXX_location_debug TARGET TIFF::CXX PROPERTY IMPORTED_IMPLIB_DEBUG)
|
|
|
|
|
|
|
|
if (_TIFF_CXX_location_release AND _TIFF_CXX_location_debug)
|
|
|
|
|
|
|
|
set(_TIFF_CXX_location
|
|
|
|
|
|
|
|
optimized "${_TIFF_CXX_location_release}"
|
|
|
|
|
|
|
|
debug "${_TIFF_CXX_location_debug}")
|
|
|
|
|
|
|
|
elseif (_TIFF_CXX_location_release)
|
|
|
|
|
|
|
|
set(_TIFF_CXX_location "${_TIFF_CXX_location_release}")
|
|
|
|
|
|
|
|
elseif (_TIFF_CXX_location_debug)
|
|
|
|
|
|
|
|
set(_TIFF_CXX_location "${_TIFF_CXX_location_debug}")
|
|
|
|
|
|
|
|
else ()
|
|
|
|
|
|
|
|
get_property(_TIFF_CXX_location_release TARGET TIFF::CXX PROPERTY LOCATION_RELEASE)
|
|
|
|
|
|
|
|
if (NOT _TIFF_CXX_location_release)
|
|
|
|
|
|
|
|
get_property(_TIFF_CXX_location_release TARGET TIFF::CXX PROPERTY LOCATION_RELWITHDEBINFO)
|
|
|
|
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
get_property(_TIFF_CXX_location_debug TARGET TIFF::CXX PROPERTY LOCATION_DEBUG)
|
|
|
|
|
|
|
|
if (_TIFF_CXX_location_release AND _TIFF_CXX_location_debug)
|
|
|
|
|
|
|
|
set(_TIFF_CXX_location
|
|
|
|
|
|
|
|
optimized "${_TIFF_CXX_location_release}"
|
|
|
|
|
|
|
|
debug "${_TIFF_CXX_location_debug}")
|
|
|
|
|
|
|
|
elseif (_TIFF_CXX_location_release)
|
|
|
|
|
|
|
|
set(_TIFF_CXX_location "${_TIFF_CXX_location_release}")
|
|
|
|
|
|
|
|
elseif (_TIFF_CXX_location_debug)
|
|
|
|
|
|
|
|
set(_TIFF_CXX_location "${_TIFF_CXX_location_debug}")
|
|
|
|
|
|
|
|
else ()
|
|
|
|
|
|
|
|
get_property(_TIFF_CXX_location TARGET TIFF::CXX PROPERTY LOCATION)
|
|
|
|
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
unset(_TIFF_CXX_location_release)
|
|
|
|
|
|
|
|
unset(_TIFF_CXX_location_debug)
|
|
|
|
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
list(INSERT TIFF_LIBRARIES 0
|
|
|
|
|
|
|
|
"${_TIFF_CXX_location}")
|
|
|
|
unset(_TIFF_CXX_location)
|
|
|
|
unset(_TIFF_CXX_location)
|
|
|
|
set(TIFF_CXX_FOUND 1)
|
|
|
|
set(TIFF_CXX_FOUND 1)
|
|
|
|
else ()
|
|
|
|
else ()
|
|
|
@ -135,12 +206,16 @@ if (tiff_FOUND)
|
|
|
|
set(TIFF_${_TIFF_component}_FOUND "${tiff_${_TIFF_component}_FOUND}")
|
|
|
|
set(TIFF_${_TIFF_component}_FOUND "${tiff_${_TIFF_component}_FOUND}")
|
|
|
|
endforeach ()
|
|
|
|
endforeach ()
|
|
|
|
unset(_TIFF_component)
|
|
|
|
unset(_TIFF_component)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
|
|
|
|
|
|
|
find_package_handle_standard_args(TIFF
|
|
|
|
|
|
|
|
HANDLE_COMPONENTS
|
|
|
|
|
|
|
|
VERSION_VAR TIFF_VERSION_STRING)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cmake_policy(POP)
|
|
|
|
return ()
|
|
|
|
return ()
|
|
|
|
endif ()
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
|
|
|
|
cmake_policy(PUSH)
|
|
|
|
|
|
|
|
cmake_policy(SET CMP0057 NEW)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
find_path(TIFF_INCLUDE_DIR tiff.h)
|
|
|
|
find_path(TIFF_INCLUDE_DIR tiff.h)
|
|
|
|
|
|
|
|
|
|
|
|
set(TIFF_NAMES ${TIFF_NAMES} tiff libtiff tiff3 libtiff3)
|
|
|
|
set(TIFF_NAMES ${TIFF_NAMES} tiff libtiff tiff3 libtiff3)
|
|
|
|