Replace ENABLE_FILTER_BLOSC with NETCDF_ENABLE_FILTER_BLOSC

This commit is contained in:
Kyle Shores 2024-03-18 15:36:10 -05:00
parent e4f9e44db1
commit 68a126538c
2 changed files with 2 additions and 2 deletions

View File

@ -560,7 +560,7 @@ set(REMOTETESTSERVERS "remotetest.unidata.ucar.edu" CACHE STRING "test servers t
# Locate some compressors
option(ENABLE_FILTER_SZIP "Enable use of Szip compression library if it is available. Required if ENABLE_NCZARR is true." ON)
option(ENABLE_FILTER_BZ2 "Enable use of Bz2 compression library if it is available." ON)
option(ENABLE_FILTER_BLOSC "Enable use of blosc compression library if it is available." ON)
option(NETCDF_ENABLE_FILTER_BLOSC "Enable use of blosc compression library if it is available." ON)
option(ENABLE_FILTER_ZSTD "Enable use of Zstd compression library if it is available." ON)
# If user wants, then install selected plugins (default on)

View File

@ -354,7 +354,7 @@ endif()
IF (ENABLE_FILTER_BZ2)
find_package(Bz2)
endif()
IF (ENABLE_FILTER_BLOSC)
IF (NETCDF_ENABLE_FILTER_BLOSC)
find_package(Blosc)
endif()
IF (ENABLE_FILTER_ZSTD)