mirror of
https://github.com/facebook/rocksdb.git
synced 2024-11-28 15:33:54 +00:00
e09b9d0cb9
Summary:
https://github.com/facebook/rocksdb/issues/12247 imported another typo in cmakelists.txt and findzstd.cmake.
cmake report ZSTD_INCLUDE_DIRS not found.
Actually it should be
aacf60dda2/cmake/modules/Findzstd.cmake (L8)
Pull Request resolved: https://github.com/facebook/rocksdb/pull/12309
Reviewed By: hx235
Differential Revision: D54070348
Pulled By: ajkr
fbshipit-source-id: eaf6e260ea3669b8ea38e4c74a375bb885761b51
30 lines
781 B
CMake
30 lines
781 B
CMake
# - Find zstd
|
|
# Find the zstd compression library and includes
|
|
#
|
|
# ZSTD_INCLUDE_DIRS - where to find zstd.h, etc.
|
|
# ZSTD_LIBRARIES - List of libraries when using zstd.
|
|
# ZSTD_FOUND - True if zstd found.
|
|
|
|
find_path(ZSTD_INCLUDE_DIRS
|
|
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_DIRS)
|
|
|
|
mark_as_advanced(
|
|
ZSTD_LIBRARIES
|
|
ZSTD_INCLUDE_DIRS)
|
|
|
|
if(ZSTD_FOUND AND NOT (TARGET zstd::zstd))
|
|
add_library (zstd::zstd UNKNOWN IMPORTED)
|
|
set_target_properties(zstd::zstd
|
|
PROPERTIES
|
|
IMPORTED_LOCATION ${ZSTD_LIBRARIES}
|
|
INTERFACE_INCLUDE_DIRECTORIES ${ZSTD_INCLUDE_DIRS})
|
|
endif()
|