diff options
author | Christian Ehrlicher <ch.ehrlicher@gmx.de> | 2006-02-15 08:35:54 +0000 |
---|---|---|
committer | Christian Ehrlicher <ch.ehrlicher@gmx.de> | 2006-02-15 08:35:54 +0000 |
commit | 527ca576efb8fd69d60d0a838ef1669642f39bdb (patch) | |
tree | ff8a06ae1e7e75f472aa5eb3edeb460ba321fdcc /modules | |
parent | 24b5ce778a5c25f887d24d8a6a99cbb6ab1db995 (diff) | |
download | extra-cmake-modules-527ca576efb8fd69d60d0a838ef1669642f39bdb.tar.gz extra-cmake-modules-527ca576efb8fd69d60d0a838ef1669642f39bdb.tar.bz2 |
tiff import lib is named 'libtiff' on windows/msvc
svn path=/trunk/KDE/kdelibs/; revision=509588
Diffstat (limited to 'modules')
-rw-r--r-- | modules/FindTIFF.cmake | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/modules/FindTIFF.cmake b/modules/FindTIFF.cmake new file mode 100644 index 00000000..0c206402 --- /dev/null +++ b/modules/FindTIFF.cmake @@ -0,0 +1,27 @@ +# - 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.
+
+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)
+ IF(TIFF_LIBRARY)
+ SET( TIFF_FOUND "YES" )
+ SET( TIFF_LIBRARIES ${TIFF_LIBRARY} )
+ ENDIF(TIFF_LIBRARY)
+ENDIF(TIFF_INCLUDE_DIR)
+
|