| 388 | } |
| 389 | |
| 390 | bool cmXCodeScheme::WriteLaunchActionAdditionalOption( |
| 391 | cmXMLWriter& xout, std::string const& key, std::string const& value, |
| 392 | std::string const& varName) |
| 393 | { |
| 394 | if (Target->GetTarget()->GetPropertyAsBool(varName)) { |
| 395 | xout.StartElement("AdditionalOption"); |
| 396 | xout.BreakAttributes(); |
| 397 | |
| 398 | xout.Attribute("key", key); |
| 399 | xout.Attribute("value", value); |
| 400 | xout.Attribute("isEnabled", "YES"); |
| 401 | |
| 402 | xout.EndElement(); // AdditionalOption |
| 403 | |
| 404 | return true; |
| 405 | } |
| 406 | return false; |
| 407 | } |
| 408 | |
| 409 | void cmXCodeScheme::WriteProfileAction(cmXMLWriter& xout, |
| 410 | std::string const& configuration, |
nothing calls this directly
no test coverage detected