| 447 | } |
| 448 | |
| 449 | void cmXCodeScheme::WriteBuildableProductRunnable(cmXMLWriter& xout, |
| 450 | cmXCodeObject const* xcObj, |
| 451 | std::string const& container) |
| 452 | { |
| 453 | xout.StartElement("BuildableProductRunnable"); |
| 454 | xout.BreakAttributes(); |
| 455 | xout.Attribute("runnableDebuggingMode", "0"); |
| 456 | WriteBuildableReference(xout, xcObj, container); |
| 457 | xout.EndElement(); |
| 458 | } |
| 459 | |
| 460 | void cmXCodeScheme::WriteBuildableReference(cmXMLWriter& xout, |
| 461 | cmXCodeObject const* xcObj, |
nothing calls this directly
no test coverage detected