Skip to content

Commit

Permalink
2
Browse files Browse the repository at this point in the history
  • Loading branch information
acelyc111 committed Dec 6, 2023
1 parent 47c7429 commit abf82e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmake_modules/BaseFunctions.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -327,13 +327,13 @@ function(dsn_setup_thirdparty_libs)
set(DEFAULT_THIRDPARTY_LIBS ${THRIFT_LIB} fmt::fmt CACHE STRING "default thirdparty libs" FORCE)

# rocksdb and dependent libs
find_package(RocksDB REQUIRED)
find_package(snappy REQUIRED)
find_package(zstd REQUIRED)
find_package(lz4 REQUIRED)
if(USE_JEMALLOC)
find_package(Jemalloc REQUIRED)
endif()
find_package(RocksDB REQUIRED)

# libhdfs
find_package(JNI REQUIRED)
Expand Down
2 changes: 1 addition & 1 deletion cmake_modules/Findsnappy.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ find_library(SNAPPY_STATIC_LIB libsnappy.a
NO_SYSTEM_ENVIRONMENT_PATH)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Snappy REQUIRED_VARS
find_package_handle_standard_args(snappy REQUIRED_VARS
SNAPPY_STATIC_LIB SNAPPY_INCLUDE_DIR)
2 changes: 1 addition & 1 deletion cmake_modules/Findzstd.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ find_library(ZSTD_STATIC_LIB libzstd.a
NO_SYSTEM_ENVIRONMENT_PATH)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Zstd REQUIRED_VARS
find_package_handle_standard_args(zstd REQUIRED_VARS
ZSTD_STATIC_LIB ZSTD_INCLUDE_DIR)

0 comments on commit abf82e0

Please sign in to comment.