| 407 | } |
| 408 | |
| 409 | void cmXCodeScheme::WriteProfileAction(cmXMLWriter& xout, |
| 410 | std::string const& configuration, |
| 411 | std::string const& container) |
| 412 | { |
| 413 | xout.StartElement("ProfileAction"); |
| 414 | xout.BreakAttributes(); |
| 415 | xout.Attribute("buildConfiguration", configuration); |
| 416 | xout.Attribute("shouldUseLaunchSchemeArgsEnv", "YES"); |
| 417 | xout.Attribute("savedToolIdentifier", ""); |
| 418 | WriteCustomWorkingDirectory(xout, configuration); |
| 419 | WriteLaunchActionBooleanAttribute(xout, "debugDocumentVersioning", |
| 420 | "XCODE_SCHEME_DEBUG_DOCUMENT_VERSIONING", |
| 421 | true); |
| 422 | |
| 423 | if (IsExecutable(this->Target)) { |
| 424 | WriteBuildableProductRunnable(xout, this->Target, container); |
| 425 | } |
| 426 | |
| 427 | xout.EndElement(); |
| 428 | } |
| 429 | |
| 430 | void cmXCodeScheme::WriteAnalyzeAction(cmXMLWriter& xout, |
| 431 | std::string const& configuration) |
nothing calls this directly
no test coverage detected