diff options
author | Ian Scott <ian.m.scott@stud.man.ac.uk> | 2002-09-02 20:24:25 (GMT) |
---|---|---|
committer | Ian Scott <ian.m.scott@stud.man.ac.uk> | 2002-09-02 20:24:25 (GMT) |
commit | f5ea46bbc5caa6665a847d0329318543af825bef (patch) | |
tree | 0bdea4985d2560e097157055f549a49f8294e216 /Modules/FindZLIB.cmake | |
parent | 99a335de4836446f7b7d098387e9b33d55b5333b (diff) | |
download | CMake-f5ea46bbc5caa6665a847d0329318543af825bef.zip CMake-f5ea46bbc5caa6665a847d0329318543af825bef.tar.gz CMake-f5ea46bbc5caa6665a847d0329318543af825bef.tar.bz2 |
This file should not be empty
Diffstat (limited to 'Modules/FindZLIB.cmake')
-rw-r--r-- | Modules/FindZLIB.cmake | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Modules/FindZLIB.cmake b/Modules/FindZLIB.cmake index e69de29..cb23b6d 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) |