CheckLanguage.cmake 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. #.rst:
  2. # CheckLanguage
  3. # -------------
  4. #
  5. # Check if a language can be enabled
  6. #
  7. # Usage:
  8. #
  9. # ::
  10. #
  11. # check_language(<lang>)
  12. #
  13. # where <lang> is a language that may be passed to enable_language()
  14. # such as "Fortran". If CMAKE_<lang>_COMPILER is already defined the
  15. # check does nothing. Otherwise it tries enabling the language in a
  16. # test project. The result is cached in CMAKE_<lang>_COMPILER as the
  17. # compiler that was found, or NOTFOUND if the language cannot be
  18. # enabled.
  19. #
  20. # Example:
  21. #
  22. # ::
  23. #
  24. # check_language(Fortran)
  25. # if(CMAKE_Fortran_COMPILER)
  26. # enable_language(Fortran)
  27. # else()
  28. # message(STATUS "No Fortran support")
  29. # endif()
  30. #=============================================================================
  31. # Copyright 2009-2012 Kitware, Inc.
  32. #
  33. # Distributed under the OSI-approved BSD License (the "License");
  34. # see accompanying file Copyright.txt for details.
  35. #
  36. # This software is distributed WITHOUT ANY WARRANTY; without even the
  37. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  38. # See the License for more information.
  39. #=============================================================================
  40. # (To distribute this file outside of CMake, substitute the full
  41. # License text for the above reference.)
  42. macro(check_language lang)
  43. if(NOT DEFINED CMAKE_${lang}_COMPILER)
  44. set(_desc "Looking for a ${lang} compiler")
  45. message(STATUS ${_desc})
  46. file(REMOVE_RECURSE ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/Check${lang})
  47. file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/Check${lang}/CMakeLists.txt"
  48. "cmake_minimum_required(VERSION ${CMAKE_VERSION})
  49. project(Check${lang} ${lang})
  50. file(WRITE \"\${CMAKE_CURRENT_BINARY_DIR}/result.cmake\"
  51. \"set(CMAKE_${lang}_COMPILER \\\"\${CMAKE_${lang}_COMPILER}\\\")\\n\"
  52. )
  53. ")
  54. execute_process(
  55. WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/Check${lang}
  56. COMMAND ${CMAKE_COMMAND} . -G ${CMAKE_GENERATOR}
  57. OUTPUT_VARIABLE output
  58. ERROR_VARIABLE output
  59. RESULT_VARIABLE result
  60. )
  61. include(${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/Check${lang}/result.cmake OPTIONAL)
  62. if(CMAKE_${lang}_COMPILER AND "${result}" STREQUAL "0")
  63. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
  64. "${_desc} passed with the following output:\n"
  65. "${output}\n")
  66. else()
  67. set(CMAKE_${lang}_COMPILER NOTFOUND)
  68. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
  69. "${_desc} failed with the following output:\n"
  70. "${output}\n")
  71. endif()
  72. message(STATUS "${_desc} - ${CMAKE_${lang}_COMPILER}")
  73. set(CMAKE_${lang}_COMPILER "${CMAKE_${lang}_COMPILER}" CACHE FILEPATH "${lang} compiler")
  74. mark_as_advanced(CMAKE_${lang}_COMPILER)
  75. endif()
  76. endmacro()