2016-10-30 18:24:19 +01:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
2009-10-04 10:30:41 +03:00
|
|
|
|
|
|
|
|
2013-03-16 19:13:01 +02:00
|
|
|
find_program(CMAKE_MAKE_PROGRAM make
|
2023-05-23 16:38:00 +02:00
|
|
|
REGISTRY_VIEW 32
|
2013-03-16 19:13:01 +02:00
|
|
|
PATHS
|
2023-05-23 16:38:00 +02:00
|
|
|
# Typical install path for 32-bit MSYS2 (https://repo.msys2.org/distrib/msys2-i686-latest.sfx.exe)
|
|
|
|
"C:/msys32/usr"
|
|
|
|
# Typical install path for MINGW32 (https://sourceforge.net/projects/mingw)
|
|
|
|
"C:/mingw/msys"
|
|
|
|
# Git for Windows 32-bit (https://gitforwindows.org/)
|
|
|
|
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\GitForWindows;InstallPath]/usr")
|
|
|
|
|
2013-03-16 19:13:01 +02:00
|
|
|
mark_as_advanced(CMAKE_MAKE_PROGRAM)
|