📄 findtiff.cmake
字号:
#
# Find a TIFF library
#
# This file is used to manage using either a natively provided TIFF library or the one in v3p if provided.
#
#
# As per the standard scheme the following definitions are used
# TIFF_INCLUDE_DIR - where to find tiff.h
# TIFF_LIBRARIES - the set of libraries to include to use TIFF.
# TIFF_FOUND - TRUE, if available somewhere on the system.
# Additionally
# VXL_USING_NATIVE_TIFF - True if we are using a TIFF library provided outside vxl (or v3p)
# If this FORCE variable is unset or is FALSE, try to find a native library.
IF( VXL_FORCE_V3P_TIFF )
ELSE( VXL_FORCE_V3P_TIFF )
INCLUDE( ${CMAKE_ROOT}/Modules/FindTIFF.cmake )
ENDIF( VXL_FORCE_V3P_TIFF )
IF(TIFF_FOUND)
SET(VXL_USING_NATIVE_TIFF "YES")
ELSE(TIFF_FOUND)
#
# At some point, in a "release" version, it is possible that someone
# will not have the v3p tiff library, so make sure the headers
# exist.
#
IF(EXISTS ${vxl_SOURCE_DIR}/v3p/tiff/tiff.h)
SET( TIFF_FOUND "YES" )
SET( TIFF_INCLUDE_DIR ${vxl_SOURCE_DIR}/v3p/tiff)
SET( TIFF_INSTALL_INCLUDE_DIR ${CMAKE_INSTALL_DIR}/include/vxl/v3p/tiff)
SET( TIFF_LIBRARIES tiff )
ENDIF(EXISTS ${vxl_SOURCE_DIR}/v3p/tiff/tiff.h)
ENDIF(TIFF_FOUND)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -