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
512 B
CMake
22 lines
512 B
CMake
# - Find Lz4
|
|
# Find the lz4 compression library and includes
|
|
#
|
|
# LZ4_INCLUDE_DIR - where to find lz4.h, etc.
|
|
# LZ4_LIBRARIES - List of libraries when using lz4.
|
|
# LZ4_FOUND - True if lz4 found.
|
|
|
|
find_path(LZ4_INCLUDE_DIR
|
|
NAMES lz4.h
|
|
HINTS ${LZ4_ROOT_DIR}/include)
|
|
|
|
find_library(LZ4_LIBRARIES
|
|
NAMES lz4
|
|
HINTS ${LZ4_ROOT_DIR}/lib)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(lz4 DEFAULT_MSG LZ4_LIBRARIES LZ4_INCLUDE_DIR)
|
|
|
|
mark_as_advanced(
|
|
LZ4_LIBRARIES
|
|
LZ4_INCLUDE_DIR)
|