create the project file */
| 74 | |
| 75 | /* create the project file */ |
| 76 | void cmExtraCodeBlocksGenerator::CreateProjectFile( |
| 77 | std::vector<cmLocalGenerator*> const& lgs) |
| 78 | { |
| 79 | std::string outputDir = lgs[0]->GetCurrentBinaryDirectory(); |
| 80 | std::string projectName = lgs[0]->GetProjectName(); |
| 81 | |
| 82 | std::string filename = cmStrCat(outputDir, '/', projectName, ".cbp"); |
| 83 | std::string sessionFilename = |
| 84 | cmStrCat(outputDir, '/', projectName, ".layout"); |
| 85 | |
| 86 | this->CreateNewProjectFile(lgs, filename); |
| 87 | } |
| 88 | |
| 89 | /* Tree is used to create a "Virtual Folder" in CodeBlocks, in which all |
| 90 | CMake files this project depends on will be put. This means additionally |
no test coverage detected