diff options
| author | Alexander Neundorf <neundorf@kde.org> | 2008-12-22 07:52:21 +0000 |
|---|---|---|
| committer | Alexander Neundorf <neundorf@kde.org> | 2008-12-22 07:52:21 +0000 |
| commit | bfa11e38bd5e34283ab55c318f2ca3b66457d84b (patch) | |
| tree | abf053be6b593fb012a49d0c77303c9d5e8c0091 /modules/FindTIFF.cmake | |
| parent | ecb937b3ac82ba3236537186ed728eb4e5d0ca23 (diff) | |
| download | extra-cmake-modules-bfa11e38bd5e34283ab55c318f2ca3b66457d84b.tar.gz extra-cmake-modules-bfa11e38bd5e34283ab55c318f2ca3b66457d84b.tar.bz2 | |
-delete FindPNG.cmake and FindTIFF.cmake, they are synced with the ones from cmake 2.6.2
-use the find_package_handle_standards_args() macro in FindLibXml2.cmake
Alex
svn path=/trunk/KDE/kdelibs/; revision=900078
Diffstat (limited to 'modules/FindTIFF.cmake')
| -rw-r--r-- | modules/FindTIFF.cmake | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/modules/FindTIFF.cmake b/modules/FindTIFF.cmake deleted file mode 100644 index 829a3485..00000000 --- a/modules/FindTIFF.cmake +++ /dev/null @@ -1,27 +0,0 @@ -# - 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. - -# Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. -# See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details. - -if (TIFF_INCLUDE_DIR AND TIFF_LIBRARY) - # Already in cache, be silent - set(TIFF_FIND_QUIETLY TRUE) -endif (TIFF_INCLUDE_DIR AND TIFF_LIBRARY) - -find_path(TIFF_INCLUDE_DIR NAMES tiff.h ) - -set(TIFF_NAMES ${TIFF_NAMES} tiff libtiff libtiff3) -find_library(TIFF_LIBRARY NAMES ${TIFF_NAMES} ) - -include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(TIFF DEFAULT_MSG TIFF_INCLUDE_DIR TIFF_LIBRARY) - -set(TIFF_LIBRARIES ${TIFF_LIBRARY} ) -mark_as_advanced(TIFF_INCLUDE_DIR TIFF_LIBRARY) |
