mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-03-19 17:30:27 +08:00
Correct an issue where a variable was being treated as a list instead of a string.
This commit is contained in:
parent
c3ca3d3001
commit
616b6416c7
@ -396,7 +396,6 @@ set(HAVE_SZ ${Szip_FOUND})
|
||||
set(USE_SZIP ${HAVE_SZ})
|
||||
set_std_filter(Blosc)
|
||||
if(Zstd_FOUND)
|
||||
#set(STD_FILTERS "${STD_FILTERS} zstd")
|
||||
set_std_filter(Zstd)
|
||||
endif()
|
||||
if(Bz2_FOUND)
|
||||
@ -408,7 +407,8 @@ else()
|
||||
set(HAVE_BZ2 ON CACHE BOOL "")
|
||||
set(STD_FILTERS "${STD_FILTERS} bz2")
|
||||
endif()
|
||||
set(STD_FILTERS ${STD_FILTERS} ${FOUND_STD_FILTERS})
|
||||
|
||||
set(STD_FILTERS "${STD_FILTERS}${FOUND_STD_FILTERS}")
|
||||
IF (NETCDF_ENABLE_NCZARR_ZIP)
|
||||
find_package(Zip)
|
||||
if(Zip_FOUND)
|
||||
|
Loading…
x
Reference in New Issue
Block a user