185ade4c0c
Summary: This pr enables linking all the supported compression libraries via cmake. Closes https://github.com/facebook/rocksdb/pull/2552 Differential Revision: D5620607 Pulled By: yiwu-arbug fbshipit-source-id: b6949181f305bfdf04a98f898c92fd0caba0c45a
22 lines
531 B
CMake
22 lines
531 B
CMake
# - Find zstd
|
|
# Find the zstd compression library and includes
|
|
#
|
|
# ZSTD_INCLUDE_DIR - where to find zstd.h, etc.
|
|
# ZSTD_LIBRARIES - List of libraries when using zstd.
|
|
# ZSTD_FOUND - True if zstd found.
|
|
|
|
find_path(ZSTD_INCLUDE_DIR
|
|
NAMES zstd.h
|
|
HINTS ${ZSTD_ROOT_DIR}/include)
|
|
|
|
find_library(ZSTD_LIBRARIES
|
|
NAMES zstd
|
|
HINTS ${ZSTD_ROOT_DIR}/lib)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(zstd DEFAULT_MSG ZSTD_LIBRARIES ZSTD_INCLUDE_DIR)
|
|
|
|
mark_as_advanced(
|
|
ZSTD_LIBRARIES
|
|
ZSTD_INCLUDE_DIR)
|