Make FindZLIB consistent with official definitions (#4823)
Summary: CMake 3 already has FindZLIB. [https://cmake.org/cmake/help/v3.13/module/FindZLIB.html](https://cmake.org/cmake/help/v3.13/module/FindZLIB.html) Pull Request resolved: https://github.com/facebook/rocksdb/pull/4823 Differential Revision: D13567653 Pulled By: ajkr fbshipit-source-id: e424aac1e5d9af4ee0d293896faedf7c712f7734main
parent
b9d6eccac1
commit
e8210e44da
@ -1,21 +0,0 @@ |
||||
# - Find zlib |
||||
# Find the zlib compression library and includes |
||||
# |
||||
# ZLIB_INCLUDE_DIR - where to find zlib.h, etc. |
||||
# ZLIB_LIBRARIES - List of libraries when using zlib. |
||||
# ZLIB_FOUND - True if zlib found. |
||||
|
||||
find_path(ZLIB_INCLUDE_DIR |
||||
NAMES zlib.h |
||||
HINTS ${ZLIB_ROOT_DIR}/include) |
||||
|
||||
find_library(ZLIB_LIBRARIES |
||||
NAMES z |
||||
HINTS ${ZLIB_ROOT_DIR}/lib) |
||||
|
||||
include(FindPackageHandleStandardArgs) |
||||
find_package_handle_standard_args(zlib DEFAULT_MSG ZLIB_LIBRARIES ZLIB_INCLUDE_DIR) |
||||
|
||||
mark_as_advanced( |
||||
ZLIB_LIBRARIES |
||||
ZLIB_INCLUDE_DIR) |
Loading…
Reference in new issue