29 lines
612 B
CMake
29 lines
612 B
CMake
#
|
|
# Find the native TIFF includes and library
|
|
#
|
|
# This module defines
|
|
# TIFF_INCLUDE_DIR, where to find tiff.h, etc.
|
|
# TIFF_LIBRARIES, the libraries to link against to use TIFF.
|
|
# TIFF_FOUND, If false, do not try to use TIFF.
|
|
|
|
# also defined, but not for general use are
|
|
# TIFF_LIBRARY, where to find the TIFF library.
|
|
|
|
FIND_PATH(TIFF_INCLUDE_DIR tiff.h
|
|
/usr/local/include
|
|
/usr/include
|
|
)
|
|
|
|
FIND_LIBRARY(TIFF_LIBRARY tiff
|
|
/usr/lib
|
|
/usr/local/lib
|
|
)
|
|
|
|
IF(TIFF_INCLUDE_DIR)
|
|
IF(TIFF_LIBRARY)
|
|
SET( TIFF_FOUND "YES" )
|
|
SET( TIFF_LIBRARIES ${TIFF_LIBRARY} )
|
|
ENDIF(TIFF_LIBRARY)
|
|
ENDIF(TIFF_INCLUDE_DIR)
|
|
|