diff options
author | Brad King <brad.king@kitware.com> | 2022-03-21 13:11:18 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-03-21 13:17:32 -0400 |
commit | 687a91967f4cb02943421802e7929a6582cec63a (patch) | |
tree | 7e9a85916e6bdc2a279e0b36fa161556d3983658 /Tests/InterfaceLinkLibrariesDirect/order_E.c | |
parent | 66ba460810afdc0e0f65c20b1bc057a204acc82c (diff) | |
download | cmake-687a91967f4cb02943421802e7929a6582cec63a.tar.gz |
Revert INTERFACE_LINK_LIBRARIES_DIRECT feature for 3.23 branch
Revert commit f3ad061858 (Add usage requirements to update direct link
dependencies, 2022-01-12, v3.23.0-rc1~44^2) and the property storage
updates in its predecessor commit 193a999cd5 (cmTarget: Add
INTERFACE_LINK_LIBRARIES_DIRECT{,_EXCLUDE} backtrace storage,
2022-01-06, v3.23.0-rc1~44^2~1) from the 3.23 release branch.
After initial experience using the feature in practice, additional
design considerations have been raised for discussion in the original
issue. To avoid rushing this for the 3.23 series, we've decided to
revert the feature for now so it can be revised for a future release.
Issue: #22496
Diffstat (limited to 'Tests/InterfaceLinkLibrariesDirect/order_E.c')
-rw-r--r-- | Tests/InterfaceLinkLibrariesDirect/order_E.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Tests/InterfaceLinkLibrariesDirect/order_E.c b/Tests/InterfaceLinkLibrariesDirect/order_E.c deleted file mode 100644 index 2a5644388c..0000000000 --- a/Tests/InterfaceLinkLibrariesDirect/order_E.c +++ /dev/null @@ -1,5 +0,0 @@ -extern void order_F(void); -void order_E(void) -{ - order_F(); -} |