https://github.com/Kitware/CMake
Revision 09ef62fd988826b32f6d6e83992325d35d2f4b5b authored by Brad King on 11 November 2021, 16:23:35 UTC, committed by Brad King on 11 November 2021, 16:23:35 UTC
2 parent s e8e64e1 + b1edd6e
Raw File
Tip revision: 09ef62fd988826b32f6d6e83992325d35d2f4b5b authored by Brad King on 11 November 2021, 16:23:35 UTC
Merge branch 'IntelLLVM-Fortran-frontend-variant' into release-3.20
Tip revision: 09ef62f
CMakeMinGWFindMake.cmake
# Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.


find_program(CMAKE_MAKE_PROGRAM mingw32-make.exe PATHS
  "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MinGW;InstallLocation]/bin"
  c:/MinGW/bin /MinGW/bin
  "[HKEY_CURRENT_USER\\Software\\CodeBlocks;Path]/MinGW/bin"
  )

mark_as_advanced(CMAKE_MAKE_PROGRAM)
back to top