summaryrefslogtreecommitdiffstats
path: root/Source/cmXCodeScheme.cxx
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2023-07-26 19:39:34 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2023-07-30 22:33:07 (GMT)
commitf5d04b5bf0c1b610ab80209f313996f050cd5979 (patch)
treea08a71d1c54231d6edc20ad881d4fd6ec216f9b0 /Source/cmXCodeScheme.cxx
parent3af822cd8f2197d176fa918f08f10e22dc3d4730 (diff)
downloadCMake-f5d04b5bf0c1b610ab80209f313996f050cd5979.zip
CMake-f5d04b5bf0c1b610ab80209f313996f050cd5979.tar.gz
CMake-f5d04b5bf0c1b610ab80209f313996f050cd5979.tar.bz2
cmStrCat: use where possible in Apple-specific sources
Diffstat (limited to 'Source/cmXCodeScheme.cxx')
-rw-r--r--Source/cmXCodeScheme.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmXCodeScheme.cxx b/Source/cmXCodeScheme.cxx
index 217ac61..0019278 100644
--- a/Source/cmXCodeScheme.cxx
+++ b/Source/cmXCodeScheme.cxx
@@ -447,7 +447,7 @@ void cmXCodeScheme::WriteBuildableReference(cmXMLWriter& xout,
std::string const noConfig; // FIXME: What config to use here?
xout.Attribute("BuildableName", xcObj->GetTarget()->GetFullName(noConfig));
xout.Attribute("BlueprintName", xcObj->GetTarget()->GetName());
- xout.Attribute("ReferencedContainer", "container:" + container);
+ xout.Attribute("ReferencedContainer", cmStrCat("container:", container));
xout.EndElement();
}