mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 12:40:06 +00:00
install: do not strip dll import libraries (#14123)
DLL import libraries exist specifically to have symbols.
This commit is contained in:
parent
daaf6283f5
commit
ae8e6543a5
@ -717,9 +717,9 @@ cmInstallTargetGenerator::AddStripRule(std::ostream& os,
|
||||
const std::string& toDestDirPath)
|
||||
{
|
||||
|
||||
// don't strip static libraries, because it removes the only symbol table
|
||||
// they have so you can't link to them anymore
|
||||
if(this->Target->GetType() == cmTarget::STATIC_LIBRARY)
|
||||
// don't strip static and import libraries, because it removes the only
|
||||
// symbol table they have so you can't link to them anymore
|
||||
if(this->Target->GetType()==cmTarget::STATIC_LIBRARY || this->ImportLibrary)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user