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/testStaticLibWithPluginBad1.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/testStaticLibWithPluginBad1.c')
-rw-r--r-- | Tests/InterfaceLinkLibrariesDirect/testStaticLibWithPluginBad1.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Tests/InterfaceLinkLibrariesDirect/testStaticLibWithPluginBad1.c b/Tests/InterfaceLinkLibrariesDirect/testStaticLibWithPluginBad1.c deleted file mode 100644 index b41abc936a..0000000000 --- a/Tests/InterfaceLinkLibrariesDirect/testStaticLibWithPluginBad1.c +++ /dev/null @@ -1,6 +0,0 @@ -/* Produce an error if if the object compiled from this source is used. */ -extern int testStaticLibWithPlugin_linked_before_testStaticLibPlugin(void); -int testStaticLibPlugin(void) -{ - return testStaticLibWithPlugin_linked_before_testStaticLibPlugin(); -} |