create the project file */
| 181 | |
| 182 | /* create the project file */ |
| 183 | void cmExtraCodeLiteGenerator::CreateProjectFile( |
| 184 | std::vector<cmLocalGenerator*> const& lgs) |
| 185 | { |
| 186 | std::string const& outputDir = lgs[0]->GetCurrentBinaryDirectory(); |
| 187 | std::string projectName = lgs[0]->GetProjectName(); |
| 188 | std::string filename = cmStrCat(outputDir, '/', projectName, ".project"); |
| 189 | |
| 190 | this->CreateNewProjectFile(lgs, filename); |
| 191 | } |
| 192 | |
| 193 | std::string cmExtraCodeLiteGenerator::CollectSourceFiles( |
| 194 | cmMakefile const* makefile, cmGeneratorTarget const* gt, |
no test coverage detected