Hi,<br><br>The documentation for LINK_INTERFACE_LIBRARIES (Target property) clearly states that this is ignored for static libraries. However, I need to get the list that was passed into target_link_libraries() for that static library project. How can I obtain this list? I&#39;m doing the following:<br>
<br><br>get_target_property( tempprop platform LINK_INTERFACE_LIBRARIES )<br>message( &quot;Blah: ${tempprop}&quot; )<br><br>This prints &quot;tempprop-NOTFOUND&quot;, obviously. &quot;platform&quot; here is the name of the project which represents the static library. At some point earlier on in the CMake script, target_link_libraries() was called on project &quot;platform&quot; to give it dependencies that would transfer on to the nearest executable project that specifies &quot;platform&quot; as a dependency.<br>
<br>Help is appreciated. Thank you.<br>