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.
22 lines
512 B
22 lines
512 B
7 years ago
|
# - 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)
|