summaryrefslogtreecommitdiffstats
path: root/Modules/FindTIFF.cmake
diff options
context:
space:
mode:
authorIan Scott <ian.m.scott@stud.man.ac.uk>2002-09-02 16:58:48 (GMT)
committerIan Scott <ian.m.scott@stud.man.ac.uk>2002-09-02 16:58:48 (GMT)
commit3663167b9e1d2e57998534cfc2b455f676dad838 (patch)
treeaa79e60bb6898d624de7151d33e211e3c8cef972 /Modules/FindTIFF.cmake
parent5f60153d2fbbb73cb180e7a34adb91505fe1077a (diff)
downloadCMake-3663167b9e1d2e57998534cfc2b455f676dad838.zip
CMake-3663167b9e1d2e57998534cfc2b455f676dad838.tar.gz
CMake-3663167b9e1d2e57998534cfc2b455f676dad838.tar.bz2
This Find Module is in the new style
Diffstat (limited to 'Modules/FindTIFF.cmake')
-rw-r--r--Modules/FindTIFF.cmake28
1 files changed, 28 insertions, 0 deletions
diff --git a/Modules/FindTIFF.cmake b/Modules/FindTIFF.cmake
new file mode 100644
index 0000000..13a41e3
--- /dev/null
+++ b/Modules/FindTIFF.cmake
@@ -0,0 +1,28 @@
+#
+# 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 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(NATIVE_TIFF_INCLUDE_PATH)
+ IF(NATIVE_TIFF_LIBRARY)
+ SET( TIFF_FOUND "YES" )
+ SET( TIFF_LIBRARIES ${TIFF_LIBRARY} )
+ ENDIF(NATIVE_TIFF_LIBRARY)
+ENDIF(NATIVE_TIFF_INCLUDE_PATH)
+