summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorraffertyyu <raffertyyu@tencent.com>2024-02-22 14:39:05 -0800
committerFacebook GitHub Bot <facebook-github-bot@users.noreply.github.com>2024-02-22 14:39:05 -0800
commite09b9d0cb94fec262b2a5dc30111fd767c0664e9 (patch)
tree7c3c45f83adacba2f39c1527268903286b29286a /cmake
parentd9c0d44dab08c41e4fc794822edbf10046eddbc0 (diff)
Fix zstd typo in cmake (#12309)
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 https://github.com/facebook/rocksdb/blob/aacf60dda2a138f9d3826c25818a3bcf250859fd/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
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/Findzstd.cmake22
1 files changed, 11 insertions, 11 deletions
diff --git a/cmake/modules/Findzstd.cmake b/cmake/modules/Findzstd.cmake
index c1916c435..e82fa148c 100644
--- a/cmake/modules/Findzstd.cmake
+++ b/cmake/modules/Findzstd.cmake
@@ -1,29 +1,29 @@
# - 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.
+# 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
+find_path(ZSTD_INCLUDE_DIRS
NAMES zstd.h
HINTS ${zstd_ROOT_DIR}/include)
-find_library(zstd_LIBRARIES
+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)
+find_package_handle_standard_args(zstd DEFAULT_MSG ZSTD_LIBRARIES ZSTD_INCLUDE_DIRS)
mark_as_advanced(
- zstd_LIBRARIES
- zstd_INCLUDE_DIRS)
+ ZSTD_LIBRARIES
+ ZSTD_INCLUDE_DIRS)
-if(zstd_FOUND AND NOT (TARGET zstd::zstd))
+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})
+ IMPORTED_LOCATION ${ZSTD_LIBRARIES}
+ INTERFACE_INCLUDE_DIRECTORIES ${ZSTD_INCLUDE_DIRS})
endif()