| 372 | }; |
| 373 | |
| 374 | void WriteSlnxFolder(cmXMLElement& xmlParent, Solution const& solution, |
| 375 | Solution::Folder const& folder) |
| 376 | { |
| 377 | cmXMLElement xmlFolder(xmlParent, "Folder"); |
| 378 | xmlFolder.Attribute("Name", cmStrCat('/', folder.Name, '/')); |
| 379 | for (std::string const& filePath : folder.Files) { |
| 380 | cmXMLElement(xmlFolder, "File").Attribute("Path", filePath); |
| 381 | } |
| 382 | for (Solution::Project const* project : folder.Projects) { |
| 383 | WriteSlnxProject(xmlFolder, solution, *project); |
| 384 | } |
| 385 | }; |
| 386 | |
| 387 | void WriteSlnxPropertyGroup(cmXMLElement& xmlParent, |
| 388 | Solution::PropertyGroup const& pg) |
no test coverage detected
searching dependent graphs…