CMakePrintHelpers.cmake 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. #.rst:
  2. # CMakePrintHelpers
  3. # -----------------
  4. #
  5. # Convenience macros for printing properties and variables, useful e.g. for debugging.
  6. #
  7. # ::
  8. #
  9. # CMAKE_PRINT_PROPERTIES([TARGETS target1 .. targetN]
  10. # [SOURCES source1 .. sourceN]
  11. # [DIRECTORIES dir1 .. dirN]
  12. # [TESTS test1 .. testN]
  13. # [CACHE_ENTRIES entry1 .. entryN]
  14. # PROPERTIES prop1 .. propN )
  15. #
  16. # This macro prints the values of the properties of the given targets,
  17. # source files, directories, tests or cache entries. Exactly one of the
  18. # scope keywords must be used. Example::
  19. #
  20. # cmake_print_properties(TARGETS foo bar PROPERTIES
  21. # LOCATION INTERFACE_INCLUDE_DIRS)
  22. #
  23. # This will print the LOCATION and INTERFACE_INCLUDE_DIRS properties for
  24. # both targets foo and bar.
  25. #
  26. #
  27. #
  28. # CMAKE_PRINT_VARIABLES(var1 var2 .. varN)
  29. #
  30. # This macro will print the name of each variable followed by its value.
  31. # Example::
  32. #
  33. # cmake_print_variables(CMAKE_C_COMPILER CMAKE_MAJOR_VERSION DOES_NOT_EXIST)
  34. #
  35. # Gives::
  36. #
  37. # -- CMAKE_C_COMPILER="/usr/bin/gcc" ; CMAKE_MAJOR_VERSION="2" ; DOES_NOT_EXIST=""
  38. #=============================================================================
  39. # Copyright 2013 Alexander Neundorf, <neundorf@kde.org>
  40. #
  41. # Distributed under the OSI-approved BSD License (the "License");
  42. # see accompanying file Copyright.txt for details.
  43. #
  44. # This software is distributed WITHOUT ANY WARRANTY; without even the
  45. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  46. # See the License for more information.
  47. #=============================================================================
  48. # (To distribute this file outside of CMake, substitute the full
  49. # License text for the above reference.)
  50. include(CMakeParseArguments)
  51. function(CMAKE_PRINT_VARIABLES)
  52. set(msg "")
  53. foreach(var ${ARGN})
  54. if(msg)
  55. set(msg "${msg} ; ")
  56. endif()
  57. set(msg "${msg}${var}=\"${${var}}\"")
  58. endforeach()
  59. message(STATUS "${msg}")
  60. endfunction()
  61. function(CMAKE_PRINT_PROPERTIES )
  62. set(options )
  63. set(oneValueArgs )
  64. set(multiValueArgs TARGETS SOURCES TESTS DIRECTORIES CACHE_ENTRIES PROPERTIES )
  65. cmake_parse_arguments(CPP "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
  66. if(CPP_UNPARSED_ARGUMENTS)
  67. message(FATAL_ERROR "Unknown keywords given to cmake_print_properties(): \"${CPP_UNPARSED_ARGUMENTS}\"")
  68. return()
  69. endif()
  70. if(NOT CPP_PROPERTIES)
  71. message(FATAL_ERROR "Required argument PROPERTIES missing in cmake_print_properties() call")
  72. return()
  73. endif()
  74. set(mode)
  75. set(items)
  76. set(keyword)
  77. if(CPP_TARGETS)
  78. set(items ${CPP_TARGETS})
  79. set(mode ${mode} TARGETS)
  80. set(keyword TARGET)
  81. endif()
  82. if(CPP_SOURCES)
  83. set(items ${CPP_SOURCES})
  84. set(mode ${mode} SOURCES)
  85. set(keyword SOURCE)
  86. endif()
  87. if(CPP_TESTS)
  88. set(items ${CPP_TESTS})
  89. set(mode ${mode} TESTS)
  90. set(keyword TEST)
  91. endif()
  92. if(CPP_DIRECTORIES)
  93. set(items ${CPP_DIRECTORIES})
  94. set(mode ${mode} DIRECTORIES)
  95. set(keyword DIRECTORY)
  96. endif()
  97. if(CPP_CACHE_ENTRIES)
  98. set(items ${CPP_CACHE_ENTRIES})
  99. set(mode ${mode} CACHE_ENTRIES)
  100. set(keyword CACHE)
  101. endif()
  102. if(NOT mode)
  103. message(FATAL_ERROR "Mode keyword missing in cmake_print_properties() call, must be one of TARGETS SOURCES TESTS DIRECTORIES CACHE_ENTRIES PROPERTIES")
  104. return()
  105. endif()
  106. list(LENGTH mode modeLength)
  107. if("${modeLength}" GREATER 1)
  108. message(FATAL_ERROR "Multiple mode keyword used in cmake_print_properties() call, it must be exactly one of TARGETS SOURCES TESTS DIRECTORIES CACHE_ENTRIES PROPERTIES")
  109. return()
  110. endif()
  111. set(msg "\n")
  112. foreach(item ${items})
  113. set(itemExists TRUE)
  114. if(keyword STREQUAL "TARGET")
  115. if(NOT TARGET ${item})
  116. set(itemExists FALSE)
  117. set(msg "${msg}\n No such TARGET \"${item}\" !\n\n")
  118. endif()
  119. endif()
  120. if (itemExists)
  121. set(msg "${msg} Properties for ${keyword} ${item}:\n")
  122. foreach(prop ${CPP_PROPERTIES})
  123. get_property(propertySet ${keyword} ${item} PROPERTY "${prop}" SET)
  124. if(propertySet)
  125. get_property(property ${keyword} ${item} PROPERTY "${prop}")
  126. set(msg "${msg} ${item}.${prop} = \"${property}\"\n")
  127. else()
  128. set(msg "${msg} ${item}.${prop} = <NOTFOUND>\n")
  129. endif()
  130. endforeach()
  131. endif()
  132. endforeach()
  133. message(STATUS "${msg}")
  134. endfunction()