diff options
author | Cristian Adam <cristian.adam@gmail.com> | 2021-09-14 14:49:16 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-09-15 14:39:46 (GMT) |
commit | 3b9e04accb46127b837bc93e90d32060c63349ee (patch) | |
tree | 46f73e39d0a91b1b7b84d4c4f42f0f86acb64939 /Source/cmLocalGenerator.cxx | |
parent | c9a29ce55d7af9980e866a98a3c81b5f4edb89b0 (diff) | |
download | CMake-3b9e04accb46127b837bc93e90d32060c63349ee.zip CMake-3b9e04accb46127b837bc93e90d32060c63349ee.tar.gz CMake-3b9e04accb46127b837bc93e90d32060c63349ee.tar.bz2 |
PCH: MSVC: Restrict OBJECT library INTERFACE_LINK_LIBRARIES usage
The pch object file could cause problems when the reused pch is passed
through an OBJECT library, which would use INTERFACE_LINK_LIBRARIES to
link the pch object file.
Fixes: #22630
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index 8be015e..5042874 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -2654,7 +2654,8 @@ void cmLocalGenerator::AddPchDependencies(cmGeneratorTarget* target) cmStrCat(" ", this->ConvertToOutputFormat(pchSourceObj, SHELL)), true); - } else { + } else if (reuseTarget->GetType() == + cmStateEnums::OBJECT_LIBRARY) { target->Target->AppendProperty( "INTERFACE_LINK_LIBRARIES", cmStrCat("$<$<CONFIG:", config, |