| 437 | } |
| 438 | |
| 439 | void cmXCodeScheme::WriteArchiveAction(cmXMLWriter& xout, |
| 440 | std::string const& configuration) |
| 441 | { |
| 442 | xout.StartElement("ArchiveAction"); |
| 443 | xout.BreakAttributes(); |
| 444 | xout.Attribute("buildConfiguration", configuration); |
| 445 | xout.Attribute("revealArchiveInOrganizer", "YES"); |
| 446 | xout.EndElement(); |
| 447 | } |
| 448 | |
| 449 | void cmXCodeScheme::WriteBuildableProductRunnable(cmXMLWriter& xout, |
| 450 | cmXCodeObject const* xcObj, |
nothing calls this directly
no test coverage detected