| 324 | } |
| 325 | |
| 326 | void WriteSlnxSolutionConfigurationPlatforms(cmXMLElement& xmlParent, |
| 327 | Solution const& solution) |
| 328 | { |
| 329 | cmXMLElement xmlConfigurations(xmlParent, "Configurations"); |
| 330 | for (std::string const& c : solution.Configs) { |
| 331 | cmXMLElement(xmlConfigurations, "BuildType").Attribute("Name", c); |
| 332 | } |
| 333 | cmXMLElement(xmlConfigurations, "Platform") |
| 334 | .Attribute("Name", solution.Platform); |
| 335 | }; |
| 336 | |
| 337 | void WriteSlnxProject(cmXMLElement& xmlParent, Solution const& solution, |
| 338 | Solution::Project const& project) |
no test coverage detected
searching dependent graphs…