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'm doing the following:<br>
<br><br>get_target_property( tempprop platform LINK_INTERFACE_LIBRARIES )<br>message( "Blah: ${tempprop}" )<br><br>This prints "tempprop-NOTFOUND", obviously. "platform" 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 "platform" to give it dependencies that would transfer on to the nearest executable project that specifies "platform" as a dependency.<br>
<br>Help is appreciated. Thank you.<br>