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 authored and pnorbert committed Jan 7, 2025
1 parent c9cdd93 commit 123e93c
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 123e93c

Please sign in to comment.