diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-06-15 17:00:54 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-06-15 17:00:54 (GMT) |
commit | 82375189948c5740d57415c305534500984fc14f (patch) | |
tree | 2ac4574b7cf7405d772513656f0b31304777c840 /Source/cmInstallTargetGenerator.h | |
parent | 69d362846161e14002377a66e7505219b2b6af27 (diff) | |
download | CMake-82375189948c5740d57415c305534500984fc14f.zip CMake-82375189948c5740d57415c305534500984fc14f.tar.gz CMake-82375189948c5740d57415c305534500984fc14f.tar.bz2 |
BUG: don't strip static libraries, it removes their symbol table, dynamic
libs have an extra symbol table so they still work stripped
Alex
Diffstat (limited to 'Source/cmInstallTargetGenerator.h')
-rw-r--r-- | Source/cmInstallTargetGenerator.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmInstallTargetGenerator.h b/Source/cmInstallTargetGenerator.h index 6a84387..35c1662 100644 --- a/Source/cmInstallTargetGenerator.h +++ b/Source/cmInstallTargetGenerator.h @@ -45,6 +45,7 @@ protected: bool useSOName); void AddInstallNamePatchRule(std::ostream& os, const char* destination); void AddStripRule(std::ostream& os, + cmTarget::TargetType type, const std::string& quotedFullDestinationFilename, bool optional); void AddRanlibRule(std::ostream& os, |