| 428 | } |
| 429 | |
| 430 | void cmXCodeScheme::WriteAnalyzeAction(cmXMLWriter& xout, |
| 431 | std::string const& configuration) |
| 432 | { |
| 433 | xout.StartElement("AnalyzeAction"); |
| 434 | xout.BreakAttributes(); |
| 435 | xout.Attribute("buildConfiguration", configuration); |
| 436 | xout.EndElement(); |
| 437 | } |
| 438 | |
| 439 | void cmXCodeScheme::WriteArchiveAction(cmXMLWriter& xout, |
| 440 | std::string const& configuration) |
nothing calls this directly
no test coverage detected