| 1459 | } |
| 1460 | |
| 1461 | void cmGlobalXCodeGenerator::SetCurrentLocalGenerator(cmLocalGenerator* gen) |
| 1462 | { |
| 1463 | this->CurrentLocalGenerator = gen; |
| 1464 | this->CurrentMakefile = gen->GetMakefile(); |
| 1465 | |
| 1466 | // Select the current set of configuration types. |
| 1467 | this->CurrentConfigurationTypes = |
| 1468 | this->CurrentMakefile->GetGeneratorConfigs(cmMakefile::IncludeEmptyConfig); |
| 1469 | } |
| 1470 | |
| 1471 | struct cmSourceFilePathCompare |
| 1472 | { |
no test coverage detected