File: PrintProperties.cmake

package info (click to toggle)
audacity 3.2.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 106,704 kB
  • sloc: cpp: 277,038; ansic: 73,623; lisp: 7,761; python: 3,305; sh: 2,715; perl: 821; xml: 275; makefile: 119
file content (49 lines) | stat: -rw-r--r-- 2,065 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#
# From https://stackoverflow.com/a/51987470 but modified
#
function(print_properties typ tgt)
   message("Properties for ${typ} ${tgt}:")

   # Get all propreties that cmake supports
   execute_process(COMMAND cmake --help-property-list OUTPUT_VARIABLE CMAKE_PROPERTY_LIST)

   # Convert command output into a CMake list
   STRING(REGEX REPLACE ";" "\\\\;" CMAKE_PROPERTY_LIST "${CMAKE_PROPERTY_LIST}")
   STRING(REGEX REPLACE "\n" ";" CMAKE_PROPERTY_LIST "${CMAKE_PROPERTY_LIST}")

   # Fix https://stackoverflow.com/questions/32197663/how-can-i-remove-the-the-location-property-may-not-be-read-from-target-error-i
   list(FILTER CMAKE_PROPERTY_LIST EXCLUDE REGEX "^LOCATION$|^LOCATION_|_LOCATION$")

   # For some reason, "TYPE" shows up twice - others might too?
   list(REMOVE_DUPLICATES CMAKE_PROPERTY_LIST)

   # build whitelist by filtering down from CMAKE_PROPERTY_LIST in case cmake is
   # a different version, and one of our hardcoded whitelisted properties
   # doesn't exist!
   unset(CMAKE_WHITELISTED_PROPERTY_LIST)
   foreach(prop ${CMAKE_PROPERTY_LIST})
      if(prop MATCHES "^(INTERFACE|[_a-z]|IMPORTED_LIBNAME_|MAP_IMPORTED_CONFIG_)|^(COMPATIBLE_INTERFACE_(BOOL|NUMBER_MAX|NUMBER_MIN|STRING)|EXPORT_NAME|IMPORTED(_GLOBAL|_CONFIGURATIONS|_LIBNAME)?|NAME|TYPE|NO_SYSTEM_FROM_IMPORTED)$")
         list(APPEND CMAKE_WHITELISTED_PROPERTY_LIST ${prop})
      endif()
   endforeach()

   set(PROP_LIST ${CMAKE_PROPERTY_LIST})
   if( typ MATCHES "TARGET" )
      get_target_property(target_type ${tgt} TYPE)
      if(target_type STREQUAL "INTERFACE_LIBRARY")
         set(PROP_LIST ${CMAKE_WHITELISTED_PROPERTY_LIST})
      endif()
   endif()

   foreach (prop ${PROP_LIST})
      string(REPLACE "<CONFIG>" "${CMAKE_BUILD_TYPE}" prop ${prop})
      get_property(propval ${typ} ${tgt} PROPERTY ${prop} SET)
      if (propval)
         get_property(propval ${typ} ${tgt} PROPERTY ${prop})
         if (NOT propval STREQUAL "propval-NOTFOUND")
            message ("  ${prop} = ${propval}")
         endif()
      endif()
   endforeach()
endfunction()