CheckCXXSymbolExists.cmake 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #.rst:
  2. # CheckCXXSymbolExists
  3. # --------------------
  4. #
  5. # Check if a symbol exists as a function, variable, or macro in C++
  6. #
  7. # CHECK_CXX_SYMBOL_EXISTS(<symbol> <files> <variable>)
  8. #
  9. # Check that the <symbol> is available after including given header
  10. # <files> and store the result in a <variable>. Specify the list of
  11. # files in one argument as a semicolon-separated list.
  12. # CHECK_CXX_SYMBOL_EXISTS() can be used to check in C++ files, as
  13. # opposed to CHECK_SYMBOL_EXISTS(), which works only for C.
  14. #
  15. # If the header files define the symbol as a macro it is considered
  16. # available and assumed to work. If the header files declare the symbol
  17. # as a function or variable then the symbol must also be available for
  18. # linking. If the symbol is a type or enum value it will not be
  19. # recognized (consider using CheckTypeSize or CheckCSourceCompiles).
  20. #
  21. # The following variables may be set before calling this macro to modify
  22. # the way the check is run:
  23. #
  24. # ::
  25. #
  26. # CMAKE_REQUIRED_FLAGS = string of compile command line flags
  27. # CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar)
  28. # CMAKE_REQUIRED_INCLUDES = list of include directories
  29. # CMAKE_REQUIRED_LIBRARIES = list of libraries to link
  30. # CMAKE_REQUIRED_QUIET = execute quietly without messages
  31. #=============================================================================
  32. # Copyright 2003-2011 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. include(CheckSymbolExists)
  44. macro(CHECK_CXX_SYMBOL_EXISTS SYMBOL FILES VARIABLE)
  45. _CHECK_SYMBOL_EXISTS("${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckSymbolExists.cxx" "${SYMBOL}" "${FILES}" "${VARIABLE}" )
  46. endmacro()