diff options
author | Brad King <brad.king@kitware.com> | 2020-05-14 19:09:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-05-18 16:56:56 (GMT) |
commit | 3fa3b7a40273ba1e95c68794e1685345c8f78ab0 (patch) | |
tree | 3d755b8d43441fb1af0aefc1dbec9ba82f679658 /Source/cmXCodeScheme.cxx | |
parent | d6a88d21589f5b614baea16b25261b416651533c (diff) | |
download | CMake-3fa3b7a40273ba1e95c68794e1685345c8f78ab0.zip CMake-3fa3b7a40273ba1e95c68794e1685345c8f78ab0.tar.gz CMake-3fa3b7a40273ba1e95c68794e1685345c8f78ab0.tar.bz2 |
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.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmXCodeScheme.cxx b/Source/cmXCodeScheme.cxx index 9ac1457..f4c2f2d 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(); |