diff options
author | Alexander Neundorf <neundorf@kde.org> | 2006-09-15 21:27:44 +0000 |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2006-09-15 21:27:44 +0000 |
commit | 456217a03c48ff376e534b5237a2b9dde14ef46b (patch) | |
tree | 451e3a6d7875ee57830c9a3e15e623812e2319c5 /modules/FindZLIB.cmake | |
parent | daeac48c48f0e2d50c7bc4ff45adda5601b0ecc2 (diff) | |
download | extra-cmake-modules-456217a03c48ff376e534b5237a2b9dde14ef46b.tar.gz extra-cmake-modules-456217a03c48ff376e534b5237a2b9dde14ef46b.tar.bz2 |
remove FindZLIB.cmake and CheckTypeSize.cmake now that we require cmake 2.4.3
Alex
svn path=/trunk/KDE/kdelibs/; revision=584937
Diffstat (limited to 'modules/FindZLIB.cmake')
-rw-r--r-- | modules/FindZLIB.cmake | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/modules/FindZLIB.cmake b/modules/FindZLIB.cmake deleted file mode 100644 index c943cc3b..00000000 --- a/modules/FindZLIB.cmake +++ /dev/null @@ -1,50 +0,0 @@ -# - Find zlib -# Find the native ZLIB includes and library -# -# ZLIB_INCLUDE_DIR - where to find zlib.h, etc. -# ZLIB_LIBRARIES - List of libraries when using zlib. -# ZLIB_FOUND - True if zlib found. - -# Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. -# See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details. - - -IF (ZLIB_INCLUDE_DIR) - # Already in cache, be silent - SET(ZLIB_FIND_QUIETLY TRUE) -ENDIF (ZLIB_INCLUDE_DIR) - -FIND_PATH(ZLIB_INCLUDE_DIR zlib.h - /usr/local/include - /usr/include -) - -SET(ZLIB_NAMES z zlib zdll) -FIND_LIBRARY(ZLIB_LIBRARY - NAMES ${ZLIB_NAMES} - PATHS /usr/lib /usr/local/lib -) - -IF (ZLIB_INCLUDE_DIR AND ZLIB_LIBRARY) - SET(ZLIB_FOUND TRUE) - SET( ZLIB_LIBRARIES ${ZLIB_LIBRARY} ) -ELSE (ZLIB_INCLUDE_DIR AND ZLIB_LIBRARY) - SET(ZLIB_FOUND FALSE) - SET( ZLIB_LIBRARIES ) -ENDIF (ZLIB_INCLUDE_DIR AND ZLIB_LIBRARY) - -IF (ZLIB_FOUND) - IF (NOT ZLIB_FIND_QUIETLY) - MESSAGE(STATUS "Found ZLIB: ${ZLIB_LIBRARY}") - ENDIF (NOT ZLIB_FIND_QUIETLY) -ELSE (ZLIB_FOUND) - IF (ZLIB_FIND_REQUIRED) - MESSAGE(STATUS "Looked for Z libraries named ${ZLIBS_NAMES}.") - MESSAGE(FATAL_ERROR "Could NOT find z library") - ENDIF (ZLIB_FIND_REQUIRED) -ENDIF (ZLIB_FOUND) - -MARK_AS_ADVANCED( - ZLIB_LIBRARY - ZLIB_INCLUDE_DIR - ) |