MCPcopy Create free account
hub / github.com/Kitware/CMake / BuildVirtualFolderImpl

Method BuildVirtualFolderImpl

Source/cmExtraCodeBlocksGenerator.cxx:154–162  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

152}
153
154void 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
164void Tree::BuildUnit(cmXMLWriter& xml, std::string const& fsPath) const
165{

Callers 1

BuildVirtualFolderMethod · 0.80

Calls 1

cmStrCatFunction · 0.70

Tested by

no test coverage detected