mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-17 16:50:18 +08:00
Replace ENABLE_FILTER_BZ2 with NETCDF_ENABLE_FILTER_BZ2
This commit is contained in:
parent
68a126538c
commit
a45bd40620
@ -559,7 +559,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(NETCDF_ENABLE_FILTER_BZ2 "Enable use of Bz2 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)
|
||||
|
||||
|
@ -351,7 +351,7 @@ IF (ENABLE_FILTER_SZIP)
|
||||
elseif(ENABLE_NCZARR)
|
||||
find_package(Szip)
|
||||
endif()
|
||||
IF (ENABLE_FILTER_BZ2)
|
||||
IF (NETCDF_ENABLE_FILTER_BZ2)
|
||||
find_package(Bz2)
|
||||
endif()
|
||||
IF (NETCDF_ENABLE_FILTER_BLOSC)
|
||||
|
Loading…
Reference in New Issue
Block a user