summaryrefslogtreecommitdiffstats
path: root/config/cmake/HDF5Macros.cmake
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2021-11-25 03:03:50 (GMT)
committerGitHub <noreply@github.com>2021-11-25 03:03:50 (GMT)
commitb5c4771e934fea7e3ca805f6bf12b402dd1cdfcf (patch)
tree167a555fef53f513bab8beaf17f7cface894f6d8 /config/cmake/HDF5Macros.cmake
parent2b77d4be6d0ab54c2c0b8a654faf10d7c6731b38 (diff)
downloadhdf5-b5c4771e934fea7e3ca805f6bf12b402dd1cdfcf.zip
hdf5-b5c4771e934fea7e3ca805f6bf12b402dd1cdfcf.tar.gz
hdf5-b5c4771e934fea7e3ca805f6bf12b402dd1cdfcf.tar.bz2
Merge multiple PRs to 1.8 (#1230)
Merge Fix Fortran REGEX and newlines #1226 Merge Github #969 Use stdout instead of file for configure check #1089 Merge Consolidate VFD create list macro #1132
Diffstat (limited to 'config/cmake/HDF5Macros.cmake')
-rw-r--r--config/cmake/HDF5Macros.cmake4
1 files changed, 4 insertions, 0 deletions
diff --git a/config/cmake/HDF5Macros.cmake b/config/cmake/HDF5Macros.cmake
index b3cf015..8b8b334 100644
--- a/config/cmake/HDF5Macros.cmake
+++ b/config/cmake/HDF5Macros.cmake
@@ -60,6 +60,7 @@ macro (H5_SET_LIB_OPTIONS libtarget libname libtype libpackage)
endif ()
endmacro ()
+# Initialize the list of VFDs to be used for testing and create a test folder for each VFD
macro (H5_SET_VFD_LIST)
set (VFD_LIST
sec2
@@ -92,7 +93,10 @@ macro (H5_SET_VFD_LIST)
if (H5_HAVE_WINDOWS)
set (VFD_LIST ${VFD_LIST} windows)
endif ()
+endmacro ()
+# Initialize the list of VFDs to be used for testing and create a test folder for each VFD
+macro (H5_CREATE_VFD_DIR)
foreach (vfdtest ${VFD_LIST})
file (MAKE_DIRECTORY "${PROJECT_BINARY_DIR}/${vfdtest}")
endforeach ()