CMake/Modules/FindTIFF.cmake

28 lines
687 B
CMake
Raw Normal View History

# - Find TIFF library
2002-09-02 20:58:48 +04:00
# Find the native TIFF includes and library
# This module defines
# TIFF_INCLUDE_DIR, where to find tiff.h, etc.
2005-12-15 22:17:43 +03:00
# TIFF_LIBRARIES, libraries to link against to use TIFF.
# TIFF_FOUND, If false, do not try to use TIFF.
2002-09-02 20:58:48 +04:00
# also defined, but not for general use are
# TIFF_LIBRARY, where to find the TIFF library.
2002-09-02 20:58:48 +04:00
FIND_PATH(TIFF_INCLUDE_DIR tiff.h
/usr/local/include
/usr/include
)
SET(TIFF_NAMES ${TIFF_NAMES} tiff)
FIND_LIBRARY(TIFF_LIBRARY
NAMES ${TIFF_NAMES}
PATHS /usr/lib /usr/local/lib
)
2002-09-02 20:58:48 +04:00
2002-09-03 00:59:47 +04:00
IF(TIFF_INCLUDE_DIR)
IF(TIFF_LIBRARY)
2002-09-02 20:58:48 +04:00
SET( TIFF_FOUND "YES" )
SET( TIFF_LIBRARIES ${TIFF_LIBRARY} )
2002-09-03 00:59:47 +04:00
ENDIF(TIFF_LIBRARY)
ENDIF(TIFF_INCLUDE_DIR)
2002-09-02 20:58:48 +04:00