diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2020-08-26 15:17:21 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2020-08-26 15:17:21 (GMT) |
commit | 0932c46e3d5b09d32cbe29335e8054302ab122c5 (patch) | |
tree | 00f5cb019ecaba000aa1d1062936d4618911ff1b /config/cmake/scripts/HDF5config.cmake | |
parent | 3f65adefd90bbefc446c42801fe5a502ef70d43a (diff) | |
download | hdf5-0932c46e3d5b09d32cbe29335e8054302ab122c5.zip hdf5-0932c46e3d5b09d32cbe29335e8054302ab122c5.tar.gz hdf5-0932c46e3d5b09d32cbe29335e8054302ab122c5.tar.bz2 |
MinGW uses "MinGW Makefiles"
Diffstat (limited to 'config/cmake/scripts/HDF5config.cmake')
-rw-r--r-- | config/cmake/scripts/HDF5config.cmake | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index 7b7560f..3a8d5b7 100644 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -21,6 +21,7 @@ cmake_minimum_required (VERSION 3.12) # ctest -S HDF5config.cmake,OPTION=VALUE -C Release -VV -O test.log # where valid options for OPTION are: # BUILD_GENERATOR - The cmake build generator: +# MinGW * MinGW Makefiles # Unix * Unix Makefiles # VS2019 * Visual Studio 16 2019 # VS201964 * Visual Studio 16 2019 @@ -167,7 +168,11 @@ if (NOT DEFINED HPC) ## Set the following to unique id your computer ## set (CTEST_SITE "WIN7${BUILD_GENERATOR}.XXXX") else () - set (CTEST_CMAKE_GENERATOR "Unix Makefiles") + if (MINGW) + set (CTEST_CMAKE_GENERATOR "MinGW Makefiles") + else () + set (CTEST_CMAKE_GENERATOR "Unix Makefiles") + endif () ## Set the following to unique id your computer ## if (APPLE) set (CTEST_SITE "MAC.XXXX") |