Skip to content

Commit

Permalink
conform with cmake configuration for other compression libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
gregorweiss committed Dec 6, 2024
1 parent 6a3486e commit 415b884
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmake/DetectOptions.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ if(ADIOS2_USE_BigWhoop STREQUAL AUTO)
elseif(ADIOS2_USE_BigWhoop)
find_package(BWC REQUIRED CONFIG)
endif()
set(ADIOS2_HAVE_BigWhoop ${BWC_found})
if(BWC_FOUND)
set(ADIOS2_HAVE_BigWhoop TRUE)
endif()

# Blosc2
if(ADIOS2_USE_Blosc2 STREQUAL AUTO)
Expand Down

0 comments on commit 415b884

Please sign in to comment.