aboutsummaryrefslogtreecommitdiff
path: root/modules/FindTIFF.cmake
blob: 7c6cfd9143cebc2c5e1088a4c47ea9645a158045 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# - Find TIFF library
# Find the native TIFF includes and library
# This module defines
#  TIFF_INCLUDE_DIR, where to find tiff.h, etc.
#  TIFF_LIBRARIES, 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.

if (TIFF_INCLUDE_DIR)
  # Already in cache, be silent
  set(TIFF_FIND_QUIETLY TRUE)
endif (TIFF_INCLUDE_DIR)

FIND_PATH(TIFF_INCLUDE_DIR tiff.h
  /usr/local/include
  /usr/include
)

set(TIFF_NAMES ${TIFF_NAMES} tiff libtiff)
FIND_LIBRARY(TIFF_LIBRARY
  NAMES ${TIFF_NAMES}
  PATHS /usr/lib /usr/local/lib
)

if (TIFF_INCLUDE_DIR AND TIFF_LIBRARY)
   set(TIFF_FOUND TRUE)
   set(TIFF_LIBRARIES ${TIFF_LIBRARY} )
endif (TIFF_INCLUDE_DIR AND TIFF_LIBRARY)

if (TIFF_FOUND)
   if (NOT TIFF_FIND_QUIETLY)
      message(STATUS "Found TIFF: ${TIFF_LIBRARY}")
   endif (NOT TIFF_FIND_QUIETLY)
else (TIFF_FOUND)
   if (TIFF_FIND_REQUIRED)
      message(FATAL_ERROR "Could NOT find TIFF")
   endif (TIFF_FIND_REQUIRED)
endif (TIFF_FOUND)

MARK_AS_ADVANCED(TIFF_INCLUDE_DIR TIFF_LIBRARY)