mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-17 16:50:18 +08:00
Replace ENABLE_FILTER_BLOSC with NETCDF_ENABLE_FILTER_BLOSC
This commit is contained in:
parent
e4f9e44db1
commit
68a126538c
@ -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)
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user