CheckCXXSourceRuns.cmake 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. #.rst:
  2. # CheckCXXSourceRuns
  3. # ------------------
  4. #
  5. # Check if the given C++ source code compiles and runs.
  6. #
  7. # CHECK_CXX_SOURCE_RUNS(<code> <var>)
  8. #
  9. # ::
  10. #
  11. # <code> - source code to try to compile
  12. # <var> - variable to store the result
  13. # (1 for success, empty for failure)
  14. # Will be created as an internal cache variable.
  15. #
  16. # The following variables may be set before calling this macro to modify
  17. # the way the check is run:
  18. #
  19. # ::
  20. #
  21. # CMAKE_REQUIRED_FLAGS = string of compile command line flags
  22. # CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar)
  23. # CMAKE_REQUIRED_INCLUDES = list of include directories
  24. # CMAKE_REQUIRED_LIBRARIES = list of libraries to link
  25. # CMAKE_REQUIRED_QUIET = execute quietly without messages
  26. #=============================================================================
  27. # Copyright 2006-2009 Kitware, Inc.
  28. #
  29. # Distributed under the OSI-approved BSD License (the "License");
  30. # see accompanying file Copyright.txt for details.
  31. #
  32. # This software is distributed WITHOUT ANY WARRANTY; without even the
  33. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  34. # See the License for more information.
  35. #=============================================================================
  36. # (To distribute this file outside of CMake, substitute the full
  37. # License text for the above reference.)
  38. macro(CHECK_CXX_SOURCE_RUNS SOURCE VAR)
  39. if(NOT DEFINED "${VAR}")
  40. set(MACRO_CHECK_FUNCTION_DEFINITIONS
  41. "-D${VAR} ${CMAKE_REQUIRED_FLAGS}")
  42. if(CMAKE_REQUIRED_LIBRARIES)
  43. set(CHECK_CXX_SOURCE_COMPILES_ADD_LIBRARIES
  44. LINK_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES})
  45. else()
  46. set(CHECK_CXX_SOURCE_COMPILES_ADD_LIBRARIES)
  47. endif()
  48. if(CMAKE_REQUIRED_INCLUDES)
  49. set(CHECK_CXX_SOURCE_COMPILES_ADD_INCLUDES
  50. "-DINCLUDE_DIRECTORIES:STRING=${CMAKE_REQUIRED_INCLUDES}")
  51. else()
  52. set(CHECK_CXX_SOURCE_COMPILES_ADD_INCLUDES)
  53. endif()
  54. file(WRITE "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/src.cxx"
  55. "${SOURCE}\n")
  56. if(NOT CMAKE_REQUIRED_QUIET)
  57. message(STATUS "Performing Test ${VAR}")
  58. endif()
  59. try_run(${VAR}_EXITCODE ${VAR}_COMPILED
  60. ${CMAKE_BINARY_DIR}
  61. ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/src.cxx
  62. COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS}
  63. ${CHECK_CXX_SOURCE_COMPILES_ADD_LIBRARIES}
  64. CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_FUNCTION_DEFINITIONS}
  65. -DCMAKE_SKIP_RPATH:BOOL=${CMAKE_SKIP_RPATH}
  66. "${CHECK_CXX_SOURCE_COMPILES_ADD_INCLUDES}"
  67. COMPILE_OUTPUT_VARIABLE OUTPUT)
  68. # if it did not compile make the return value fail code of 1
  69. if(NOT ${VAR}_COMPILED)
  70. set(${VAR}_EXITCODE 1)
  71. endif()
  72. # if the return value was 0 then it worked
  73. if("${${VAR}_EXITCODE}" EQUAL 0)
  74. set(${VAR} 1 CACHE INTERNAL "Test ${VAR}")
  75. if(NOT CMAKE_REQUIRED_QUIET)
  76. message(STATUS "Performing Test ${VAR} - Success")
  77. endif()
  78. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
  79. "Performing C++ SOURCE FILE Test ${VAR} succeeded with the following output:\n"
  80. "${OUTPUT}\n"
  81. "Return value: ${${VAR}}\n"
  82. "Source file was:\n${SOURCE}\n")
  83. else()
  84. if(CMAKE_CROSSCOMPILING AND "${${VAR}_EXITCODE}" MATCHES "FAILED_TO_RUN")
  85. set(${VAR} "${${VAR}_EXITCODE}")
  86. else()
  87. set(${VAR} "" CACHE INTERNAL "Test ${VAR}")
  88. endif()
  89. if(NOT CMAKE_REQUIRED_QUIET)
  90. message(STATUS "Performing Test ${VAR} - Failed")
  91. endif()
  92. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
  93. "Performing C++ SOURCE FILE Test ${VAR} failed with the following output:\n"
  94. "${OUTPUT}\n"
  95. "Return value: ${${VAR}_EXITCODE}\n"
  96. "Source file was:\n${SOURCE}\n")
  97. endif()
  98. endif()
  99. endmacro()