2021-10-27 13:38:05 +08:00
|
|
|
diff --git a/CMakeFilters.cmake b/CMakeFilters.cmake
|
|
|
|
index d5f801e..141ab44 100644
|
|
|
|
--- a/CMakeFilters.cmake
|
|
|
|
+++ b/CMakeFilters.cmake
|
|
|
|
@@ -117,8 +117,20 @@ if (HDF5_ENABLE_SZIP_SUPPORT)
|
2021-06-10 06:17:07 +08:00
|
|
|
set (LINK_COMP_LIBS ${LINK_COMP_LIBS} ${SZIP_LIBRARIES})
|
|
|
|
endif ()
|
2021-10-27 13:38:05 +08:00
|
|
|
endif ()
|
|
|
|
+ else()
|
|
|
|
+ find_package(szip CONFIG REQUIRED)
|
|
|
|
endif ()
|
|
|
|
- if (SZIP_FOUND)
|
|
|
|
+ string(TOUPPER ${CMAKE_BUILD_TYPE} upper_build_type)
|
|
|
|
+ # SZIP_STATIC_LIBRARY will be used in cmake and pkgconfig, so it must be a absolute path
|
|
|
|
+ if (TARGET szip-shared)
|
|
|
|
+ if (WIN32)
|
|
|
|
+ get_target_property(SZIP_STATIC_LIBRARY szip-shared IMPORTED_IMPLIB_${upper_build_type})
|
|
|
|
+ else()
|
|
|
|
+ get_target_property(SZIP_STATIC_LIBRARY szip-shared IMPORTED_LOCATION_${upper_build_type})
|
|
|
|
+ endif()
|
|
|
|
+ elseif (TARGET szip-static)
|
|
|
|
+ get_target_property(SZIP_STATIC_LIBRARY szip-static IMPORTED_LOCATION_${upper_build_type})
|
|
|
|
+ elseif (SZIP_FOUND)
|
|
|
|
set (H5_HAVE_FILTER_SZIP 1)
|
|
|
|
set (H5_HAVE_SZLIB_H 1)
|
|
|
|
set (H5_HAVE_LIBSZ 1)
|