mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-09 23:30:35 -06:00
cmGeneratorTarget: Simplify AIX shared library archive name computation
This commit is contained in:
@@ -3434,8 +3434,7 @@ cmGeneratorTarget::Names cmGeneratorTarget::GetLibraryNames(
|
||||
} else if (this->IsArchivedAIXSharedLibrary()) {
|
||||
targetNames.SharedObject =
|
||||
cmStrCat(components.prefix, targetNames.Base, ".so");
|
||||
targetNames.Real =
|
||||
cmStrCat(components.prefix, targetNames.Base, components.suffix);
|
||||
targetNames.Real = targetNames.Output;
|
||||
} else {
|
||||
// The library's soname.
|
||||
targetNames.SharedObject = this->ComputeVersionedName(
|
||||
|
||||
Reference in New Issue
Block a user