summaryrefslogtreecommitdiff
path: root/Modules/FindZLIB.cmake
diff options
context:
space:
mode:
authorIan Scott <ian.m.scott@stud.man.ac.uk>2002-09-02 16:24:25 -0400
committerIan Scott <ian.m.scott@stud.man.ac.uk>2002-09-02 16:24:25 -0400
commitf5ea46bbc5caa6665a847d0329318543af825bef (patch)
tree0bdea4985d2560e097157055f549a49f8294e216 /Modules/FindZLIB.cmake
parent99a335de4836446f7b7d098387e9b33d55b5333b (diff)
downloadcmake-f5ea46bbc5caa6665a847d0329318543af825bef.tar.gz
This file should not be empty
Diffstat (limited to 'Modules/FindZLIB.cmake')
-rw-r--r--Modules/FindZLIB.cmake23
1 files changed, 23 insertions, 0 deletions
diff --git a/Modules/FindZLIB.cmake b/Modules/FindZLIB.cmake
index e69de29bb2..cb23b6dec0 100644
--- a/Modules/FindZLIB.cmake
+++ b/Modules/FindZLIB.cmake
@@ -0,0 +1,23 @@
+#
+# Find the native ZLIB includes and library
+#
+# ZLIB_INCLUDE_DIR - where to find zlib.h, etc.
+# ZLIB_LIBRARIES - List of fully qualified libraries to link against when using zlib.
+# ZLIB_FOUND - Do not attempt to use zlib if "no" or undefined.
+
+FIND_PATH(ZLIB_INCLUDE_DIR zlib.h
+ /usr/local/include
+ /usr/include
+)
+
+FIND_LIBRARY(ZLIB_LIBRARY z
+ /usr/lib
+ /usr/local/lib
+)
+
+IF(ZLIB_INCLUDE_DIR)
+ IF(ZLIB_LIBRARY)
+ SET( ZLIB_LIBRARIES ${ZLIB_LIBRARY} )
+ SET( ZLIB_FOUND "YES" )
+ ENDIF(ZLIB_LIBRARY)
+ENDIF(ZLIB_INCLUDE_DIR)