diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2020-08-26 15:17:09 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2020-08-26 15:17:09 (GMT) |
commit | 1c7b5d2b58faf134e76c1824163df76c1f679908 (patch) | |
tree | da15bd691a12c00ca567425bc6aff45f0c8f7613 | |
parent | 04971bec7f06893c9971c03eaf7d83bf5726c22c (diff) | |
download | hdf5-1c7b5d2b58faf134e76c1824163df76c1f679908.zip hdf5-1c7b5d2b58faf134e76c1824163df76c1f679908.tar.gz hdf5-1c7b5d2b58faf134e76c1824163df76c1f679908.tar.bz2 |
MinGW uses "MinGW Makefiles"
-rwxr-xr-x | 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 8f49f9d..0260e20 100755 --- 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") |