CheckVariableExists.cmake 2.5 KB

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