| 2563 | } |
| 2564 | |
| 2565 | void cmGlobalGenerator::SetConfiguredFilesPath(cmGlobalGenerator* gen) |
| 2566 | { |
| 2567 | if (!gen->ConfiguredFilesPath.empty()) { |
| 2568 | this->ConfiguredFilesPath = gen->ConfiguredFilesPath; |
| 2569 | } else { |
| 2570 | this->ConfiguredFilesPath = |
| 2571 | cmStrCat(gen->CMakeInstance->GetHomeOutputDirectory(), "/CMakeFiles"); |
| 2572 | } |
| 2573 | } |
| 2574 | |
| 2575 | bool cmGlobalGenerator::IsExcluded(cmStateSnapshot const& rootSnp, |
| 2576 | cmStateSnapshot const& snp_) const |
no test coverage detected