summaryrefslogtreecommitdiffstats
path: root/Tests/InterfaceLinkLibrariesDirect/order_H_poison.c
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2022-03-21 17:11:18 (GMT)
committerBrad King <brad.king@kitware.com>2022-03-21 17:17:32 (GMT)
commit687a91967f4cb02943421802e7929a6582cec63a (patch)
tree7e9a85916e6bdc2a279e0b36fa161556d3983658 /Tests/InterfaceLinkLibrariesDirect/order_H_poison.c
parent66ba460810afdc0e0f65c20b1bc057a204acc82c (diff)
downloadCMake-687a91967f4cb02943421802e7929a6582cec63a.zip
CMake-687a91967f4cb02943421802e7929a6582cec63a.tar.gz
CMake-687a91967f4cb02943421802e7929a6582cec63a.tar.bz2
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_H_poison.c')
-rw-r--r--Tests/InterfaceLinkLibrariesDirect/order_H_poison.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/Tests/InterfaceLinkLibrariesDirect/order_H_poison.c b/Tests/InterfaceLinkLibrariesDirect/order_H_poison.c
deleted file mode 100644
index 0c6b84f..0000000
--- a/Tests/InterfaceLinkLibrariesDirect/order_H_poison.c
+++ /dev/null
@@ -1,36 +0,0 @@
-extern void order_H_poison(void);
-
-void order_A(void)
-{
- order_H_poison();
-}
-
-void order_B(void)
-{
- order_H_poison();
-}
-
-void order_C(void)
-{
- order_H_poison();
-}
-
-void order_D(void)
-{
- order_H_poison();
-}
-
-void order_E(void)
-{
- order_H_poison();
-}
-
-void order_F(void)
-{
- order_H_poison();
-}
-
-void order_G(void)
-{
- order_H_poison();
-}