summaryrefslogtreecommitdiffstats
path: root/config/cmake/scripts
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-08-26 15:17:09 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-08-26 15:17:09 (GMT)
commit1c7b5d2b58faf134e76c1824163df76c1f679908 (patch)
treeda15bd691a12c00ca567425bc6aff45f0c8f7613 /config/cmake/scripts
parent04971bec7f06893c9971c03eaf7d83bf5726c22c (diff)
downloadhdf5-1c7b5d2b58faf134e76c1824163df76c1f679908.zip
hdf5-1c7b5d2b58faf134e76c1824163df76c1f679908.tar.gz
hdf5-1c7b5d2b58faf134e76c1824163df76c1f679908.tar.bz2
MinGW uses "MinGW Makefiles"
Diffstat (limited to 'config/cmake/scripts')
-rwxr-xr-xconfig/cmake/scripts/HDF5config.cmake7
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")