| 152 | } |
| 153 | |
| 154 | void Tree::BuildVirtualFolderImpl(std::string& virtualFolders, |
| 155 | std::string const& prefix) const |
| 156 | { |
| 157 | virtualFolders += cmStrCat("CMake Files\\", prefix, this->path, "\\;"); |
| 158 | for (Tree const& folder : this->folders) { |
| 159 | folder.BuildVirtualFolderImpl(virtualFolders, |
| 160 | cmStrCat(prefix, this->path, '\\')); |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | void Tree::BuildUnit(cmXMLWriter& xml, std::string const& fsPath) const |
| 165 | { |
no test coverage detected