diff options
author | Brad King <brad.king@kitware.com> | 2022-09-29 18:10:47 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-09-29 18:26:51 (GMT) |
commit | 6883b8212443028fbfff32863e004b311c7f26e8 (patch) | |
tree | 62aa7a0ebf71e475103c876f30fb309b3d3040a5 | |
parent | 381fc368807d67dba58db8253ab937c082f8f3a3 (diff) | |
download | CMake-6883b8212443028fbfff32863e004b311c7f26e8.zip CMake-6883b8212443028fbfff32863e004b311c7f26e8.tar.gz CMake-6883b8212443028fbfff32863e004b311c7f26e8.tar.bz2 |
cmGlobalXCodeGenerator: Remove unused local variable settings
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index 9739a4e..efa2d02 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -2540,10 +2540,6 @@ void cmGlobalXCodeGenerator::CreateBuildSettings(cmGeneratorTarget* gtgt, buildSettings->AddAttribute("EXECUTABLE_SUFFIX", this->CreateString(pnsuffix)); } else if (gtgt->GetType() == cmStateEnums::OBJECT_LIBRARY) { - pnprefix = "lib"; - pnbase = gtgt->GetName(); - pnsuffix = ".a"; - std::string pncdir = this->GetObjectsDirectory( this->CurrentProject, configName, gtgt, OBJECT_LIBRARY_ARTIFACT_DIR); buildSettings->AddAttribute("CONFIGURATION_BUILD_DIR", |