| 458 | } |
| 459 | |
| 460 | void cmXCodeScheme::WriteBuildableReference(cmXMLWriter& xout, |
| 461 | cmXCodeObject const* xcObj, |
| 462 | std::string const& container) |
| 463 | { |
| 464 | xout.StartElement("BuildableReference"); |
| 465 | xout.BreakAttributes(); |
| 466 | xout.Attribute("BuildableIdentifier", "primary"); |
| 467 | xout.Attribute("BlueprintIdentifier", xcObj->GetId()); |
| 468 | std::string const noConfig; // FIXME: What config to use here? |
| 469 | xout.Attribute("BuildableName", xcObj->GetTarget()->GetFullName(noConfig)); |
| 470 | xout.Attribute("BlueprintName", xcObj->GetTarget()->GetName()); |
| 471 | xout.Attribute("ReferencedContainer", cmStrCat("container:", container)); |
| 472 | xout.EndElement(); |
| 473 | } |
| 474 | |
| 475 | void cmXCodeScheme::WriteCustomWorkingDirectory( |
| 476 | cmXMLWriter& xout, std::string const& configuration) |
nothing calls this directly
no test coverage detected