fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
528 B
21 lines
528 B
# - 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)
|
|
|