CheckVariableExists.cmake 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. #.rst:
  2. # CheckVariableExists
  3. # -------------------
  4. #
  5. # Check if the variable exists.
  6. #
  7. # ::
  8. #
  9. # CHECK_VARIABLE_EXISTS(VAR VARIABLE)
  10. #
  11. #
  12. #
  13. # ::
  14. #
  15. # VAR - the name of the variable
  16. # VARIABLE - variable to store the result
  17. # Will be created as an internal cache variable.
  18. #
  19. #
  20. # This macro is only for C variables.
  21. #
  22. # The following variables may be set before calling this macro to modify
  23. # the way the check is run:
  24. #
  25. # ::
  26. #
  27. # CMAKE_REQUIRED_FLAGS = string of compile command line flags
  28. # CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar)
  29. # CMAKE_REQUIRED_LIBRARIES = list of libraries to link
  30. # CMAKE_REQUIRED_QUIET = execute quietly without messages
  31. #=============================================================================
  32. # Copyright 2002-2009 Kitware, Inc.
  33. #
  34. # Distributed under the OSI-approved BSD License (the "License");
  35. # see accompanying file Copyright.txt for details.
  36. #
  37. # This software is distributed WITHOUT ANY WARRANTY; without even the
  38. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  39. # See the License for more information.
  40. #=============================================================================
  41. # (To distribute this file outside of CMake, substitute the full
  42. # License text for the above reference.)
  43. macro(CHECK_VARIABLE_EXISTS VAR VARIABLE)
  44. if(NOT DEFINED "${VARIABLE}")
  45. set(MACRO_CHECK_VARIABLE_DEFINITIONS
  46. "-DCHECK_VARIABLE_EXISTS=${VAR} ${CMAKE_REQUIRED_FLAGS}")
  47. if(NOT CMAKE_REQUIRED_QUIET)
  48. message(STATUS "Looking for ${VAR}")
  49. endif()
  50. if(CMAKE_REQUIRED_LIBRARIES)
  51. set(CHECK_VARIABLE_EXISTS_ADD_LIBRARIES
  52. LINK_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES})
  53. else()
  54. set(CHECK_VARIABLE_EXISTS_ADD_LIBRARIES)
  55. endif()
  56. try_compile(${VARIABLE}
  57. ${CMAKE_BINARY_DIR}
  58. ${CMAKE_ROOT}/Modules/CheckVariableExists.c
  59. COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS}
  60. ${CHECK_VARIABLE_EXISTS_ADD_LIBRARIES}
  61. CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_VARIABLE_DEFINITIONS}
  62. OUTPUT_VARIABLE OUTPUT)
  63. if(${VARIABLE})
  64. set(${VARIABLE} 1 CACHE INTERNAL "Have variable ${VAR}")
  65. if(NOT CMAKE_REQUIRED_QUIET)
  66. message(STATUS "Looking for ${VAR} - found")
  67. endif()
  68. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
  69. "Determining if the variable ${VAR} exists passed with the following output:\n"
  70. "${OUTPUT}\n\n")
  71. else()
  72. set(${VARIABLE} "" CACHE INTERNAL "Have variable ${VAR}")
  73. if(NOT CMAKE_REQUIRED_QUIET)
  74. message(STATUS "Looking for ${VAR} - not found")
  75. endif()
  76. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
  77. "Determining if the variable ${VAR} exists failed with the following output:\n"
  78. "${OUTPUT}\n\n")
  79. endif()
  80. endif()
  81. endmacro()