| 64 | } |
| 65 | |
| 66 | void cmExtraCodeBlocksGenerator::Generate() |
| 67 | { |
| 68 | // for each sub project in the project create a codeblocks project |
| 69 | for (auto const& it : this->GlobalGenerator->GetProjectMap()) { |
| 70 | // create a project file |
| 71 | this->CreateProjectFile(it.second); |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | /* create the project file */ |
| 76 | void cmExtraCodeBlocksGenerator::CreateProjectFile( |
nothing calls this directly
no test coverage detected