Skip to content

Commit

Permalink
Merge pull request #4256 from vicentebolea/disable-kwcache-default
Browse files Browse the repository at this point in the history
cmake,ci: disable kvcache
  • Loading branch information
vicentebolea authored Jul 22, 2024
2 parents 51128a1 + a338ecf commit a47d992
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ adios_option(AWSSDK "Enable support for S3 compatible storage using AWS SDK'
adios_option(Derived_Variable "Enable support for derived variables" OFF)
adios_option(PIP "Enable support for pip packaging" OFF)
adios_option(XRootD "Enable support for XRootD" AUTO)
adios_option(KVCACHE "Enable support for KVCache" AUTO)
adios_option(KVCACHE "Enable support for KVCache" OFF)

option(ADIOS2_LIBADIOS_MODE "Install only C/C++ library components" OFF)
mark_as_advanced(ADIOS2_LIBADIOS_MODE)
Expand Down
2 changes: 1 addition & 1 deletion cmake/DetectOptions.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ endif()

# KVCache
if(ADIOS2_USE_KVCACHE STREQUAL AUTO)
find_package(hiredis)
find_package(hiredis QUIET)
if (hiredis_FOUND)
message(STATUS "hiredis found. Turn on KVCache")
set(ADIOS2_HAVE_KVCACHE TRUE)
Expand Down

0 comments on commit a47d992

Please sign in to comment.