Imported Upstream version 2.8.10.2
[platform/upstream/cmake.git] / Modules / CMakeMinGWFindMake.cmake
1
2 #=============================================================================
3 # Copyright 2005-2009 Kitware, Inc.
4 #
5 # Distributed under the OSI-approved BSD License (the "License");
6 # see accompanying file Copyright.txt for details.
7 #
8 # This software is distributed WITHOUT ANY WARRANTY; without even the
9 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10 # See the License for more information.
11 #=============================================================================
12 # (To distribute this file outside of CMake, substitute the full
13 #  License text for the above reference.)
14
15 find_program(CMAKE_MAKE_PROGRAM mingw32-make.exe PATHS
16   "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MinGW;InstallLocation]/bin"
17   c:/MinGW/bin /MinGW/bin)
18 find_program(CMAKE_SH sh.exe )
19 if(CMAKE_SH)
20   message(FATAL_ERROR "sh.exe was found in your PATH, here:\n${CMAKE_SH}\nFor MinGW make to work correctly sh.exe must NOT be in your path.\nRun cmake from a shell that does not have sh.exe in your PATH.\nIf you want to use a UNIX shell, then use MSYS Makefiles.\n")
21   set(CMAKE_MAKE_PROGRAM NOTFOUND)
22 endif()
23
24 mark_as_advanced(CMAKE_MAKE_PROGRAM CMAKE_SH)