diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2024-03-12 15:35:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-12 15:35:30 (GMT) |
commit | 40cb71d4c2e41937a216c06b78e8e345955469e2 (patch) | |
tree | cdb2cfb216621f4ad9bdaf59bb57dc1f47e4b1a6 | |
parent | 037c8b63d548500453aeabc8c2416c5770a2e309 (diff) | |
download | hdf5-40cb71d4c2e41937a216c06b78e8e345955469e2.zip hdf5-40cb71d4c2e41937a216c06b78e8e345955469e2.tar.gz hdf5-40cb71d4c2e41937a216c06b78e8e345955469e2.tar.bz2 |
Remove old cmake check (#4117)
-rw-r--r-- | CMakeFilters.cmake | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/CMakeFilters.cmake b/CMakeFilters.cmake index b9c0e11..dbd68fd 100644 --- a/CMakeFilters.cmake +++ b/CMakeFilters.cmake @@ -18,18 +18,14 @@ if (NOT ZLIB_USE_LOCALCONTENT) else () set (ZLIB_URL ${TGZPATH}/${ZLIB_TGZ_NAME}) endif () -if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.15.0") - message (VERBOSE "Filter ZLIB file is ${ZLIB_URL}") -endif () +message (VERBOSE "Filter ZLIB file is ${ZLIB_URL}") if (NOT LIBAEC_USE_LOCALCONTENT) set (SZIP_URL ${LIBAEC_TGZ_ORIGPATH}/${LIBAEC_TGZ_NAME}) else () set (SZIP_URL ${TGZPATH}/${LIBAEC_TGZ_NAME}) endif () -if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.15.0") - message (VERBOSE "Filter SZIP file is ${SZIP_URL}") -endif () +message (VERBOSE "Filter SZIP file is ${SZIP_URL}") include (ExternalProject) #option (HDF5_ALLOW_EXTERNAL_SUPPORT "Allow External Library Building (NO GIT TGZ)" "NO") |