CMakeUnixFindMake.cmake 1.0 KB

1234567891011121314151617181920212223242526
  1. #=============================================================================
  2. # Copyright 2002-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 NAMES gmake make smake)
  14. mark_as_advanced(CMAKE_MAKE_PROGRAM)
  15. # Look for a make tool provided by Xcode
  16. if(NOT CMAKE_MAKE_PROGRAM AND CMAKE_HOST_APPLE)
  17. execute_process(COMMAND xcrun --find make
  18. OUTPUT_VARIABLE _xcrun_out OUTPUT_STRIP_TRAILING_WHITESPACE
  19. ERROR_VARIABLE _xcrun_err)
  20. if(_xcrun_out)
  21. set_property(CACHE CMAKE_MAKE_PROGRAM PROPERTY VALUE "${_xcrun_out}")
  22. endif()
  23. endif()