2009-09-28 19:46:51 +04:00
#=============================================================================
# Copyright 2005-2009 Kitware, Inc.
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=============================================================================
2010-08-07 04:48:47 +04:00
# (To distribute this file outside of CMake, substitute the full
2009-09-28 19:46:51 +04:00
# License text for the above reference.)
2006-02-16 05:26:47 +03:00
FIND_PROGRAM ( CMAKE_MAKE_PROGRAM mingw32-make.exe PATHS
" [ H K E Y _ L O C A L _ M A C H I N E \ \ S O F T W A R E \ \ M i c r o s o f t \ \ W i n d o w s \ \ C u r r e n t V e r s i o n \ \ U n i n s t a l l \ \ M i n G W ; I n s t a l l L o c a t i o n ] / b i n "
c : / M i n G W / b i n / M i n G W / b i n )
2006-02-15 06:03:16 +03:00
FIND_PROGRAM ( CMAKE_SH sh.exe )
IF ( CMAKE_SH )
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" )
SET ( CMAKE_MAKE_PROGRAM NOTFOUND )
ENDIF ( CMAKE_SH )
2006-02-16 05:26:47 +03:00
MARK_AS_ADVANCED ( CMAKE_MAKE_PROGRAM CMAKE_SH )