CMakeMinGWFindMake.cmake 1.2 KB

123456789101112131415161718192021222324
  1. #=============================================================================
  2. # Copyright 2005-2009 Kitware, Inc.
  3. #
  4. # Distributed under the OSI-approved BSD License (the "License");
  5. # see accompanying file Copyright.txt for details.
  6. #
  7. # This software is distributed WITHOUT ANY WARRANTY; without even the
  8. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. # See the License for more information.
  10. #=============================================================================
  11. # (To distribute this file outside of CMake, substitute the full
  12. # License text for the above reference.)
  13. find_program(CMAKE_MAKE_PROGRAM mingw32-make.exe PATHS
  14. "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MinGW;InstallLocation]/bin"
  15. c:/MinGW/bin /MinGW/bin)
  16. find_program(CMAKE_SH sh.exe )
  17. if(CMAKE_SH)
  18. 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")
  19. set(CMAKE_MAKE_PROGRAM NOTFOUND)
  20. endif()
  21. mark_as_advanced(CMAKE_MAKE_PROGRAM CMAKE_SH)