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.)
2012-08-13 21:47:32 +04:00
find_program ( CMAKE_MAKE_PROGRAM mingw32-make.exe PATHS
2012-08-13 21:42:58 +04:00
" [ 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 "
2013-07-19 15:04:00 +04:00
c : / M i n G W / b i n / M i n G W / b i n
" [ H K E Y _ C U R R E N T _ U S E R \ \ S o f t w a r e \ \ C o d e B l o c k s ; P a t h ] / M i n G W / b i n "
)
2012-08-13 21:47:32 +04: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 )
2012-08-13 21:50:14 +04:00
endif ( )
2006-02-15 06:03:16 +03:00
2012-08-13 21:47:32 +04:00
mark_as_advanced ( CMAKE_MAKE_PROGRAM CMAKE_SH )