| 403 | } |
| 404 | |
| 405 | bool cmGlobalGenerator::IsExportedTargetsFile( |
| 406 | std::string const& filename) const |
| 407 | { |
| 408 | auto const it = this->BuildExportSets.find(filename); |
| 409 | if (it == this->BuildExportSets.end()) { |
| 410 | return false; |
| 411 | } |
| 412 | return !cm::contains(this->BuildExportExportSets, filename); |
| 413 | } |
| 414 | |
| 415 | // Find the make program for the generator, required for try compiles |
| 416 | bool cmGlobalGenerator::FindMakeProgram(cmMakefile* mf) |
no test coverage detected