summaryrefslogtreecommitdiff
path: root/Source/cmXCodeScheme.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-05-14 15:09:39 -0400
committerBrad King <brad.king@kitware.com>2020-05-18 12:56:56 -0400
commit3fa3b7a40273ba1e95c68794e1685345c8f78ab0 (patch)
tree3d755b8d43441fb1af0aefc1dbec9ba82f679658 /Source/cmXCodeScheme.cxx
parentd6a88d21589f5b614baea16b25261b416651533c (diff)
downloadcmake-3fa3b7a40273ba1e95c68794e1685345c8f78ab0.tar.gz
cmGeneratorTarget: Remove default config from Get* methods
Ensure all call sites pass an explicit configuration.
Diffstat (limited to 'Source/cmXCodeScheme.cxx')
-rw-r--r--Source/cmXCodeScheme.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmXCodeScheme.cxx b/Source/cmXCodeScheme.cxx
index 9ac14575aa..f4c2f2d4c7 100644
--- a/Source/cmXCodeScheme.cxx
+++ b/Source/cmXCodeScheme.cxx
@@ -396,7 +396,8 @@ void cmXCodeScheme::WriteBuildableReference(cmXMLWriter& xout,
xout.BreakAttributes();
xout.Attribute("BuildableIdentifier", "primary");
xout.Attribute("BlueprintIdentifier", xcObj->GetId());
- xout.Attribute("BuildableName", xcObj->GetTarget()->GetFullName());
+ 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.EndElement();