Revision 0c07f390068fe5a9c3c99ebc64f6e6c72b6eff41 authored by Ben Boeckel on 21 September 2023, 20:03:08 UTC, committed by Ben Boeckel on 02 October 2023, 14:17:31 UTC
All the major compilers now have scheduled releases with support for
scanning, so remove the experimental gate.

Fixes: #18355
1 parent 68caec9
Raw File
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