Verified Commit e6d9043f authored by Tommaso Tocci's avatar Tommaso Tocci
Browse files

Fix CMake LZ4 include variable

Fix typo
parent 95ebd20a
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
# Finds liblz4.
#
# This module defines:
# LZ4_FOUND
# LZ4_INCLUDE_DIR
# LZ4_LIBRARY

# - Find Lz4
# Find the lz4 compression library and includes
#
# LZ4_FOUND - True if lz4 found.
# LZ4_LIBRARIES - List of libraries when using lz4.
# LZ4_INCLUDE_DIR - where to find lz4.h, etc.

find_path(LZ4_INCLUDE_DIR
    NAMES lz4.h
+1 −1
Original line number Diff line number Diff line
@@ -74,7 +74,7 @@ target_link_libraries(RocksDB
    ${ZLIB_LIBRARIES}
    ${BZIP2_LIBRARIES}
    ${ZSTD_LIBRARIES}
    ${LZ4_LIBRARY}
    ${LZ4_LIBRARIES}
)

if(${JeMalloc_FOUND})