mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 04:40:56 -06:00
Teach the `$<TARGET_PROPERTY:...>` generator expression to check for a new `TRANSITIVE_COMPILE_PROPERTIES` property in the target's link closure to enable transitive evaluation of named properties through the link closure, excluding entries guarded by `$<LINK_ONLY:...>`. Issue: #20416
7 lines
68 B
C
7 lines
68 B
C
int testLib10(void);
|
|
|
|
int testLib11(void)
|
|
{
|
|
return testLib10();
|
|
}
|