| 3476 | } |
| 3477 | |
| 3478 | void cmake::PrintGeneratorList() |
| 3479 | { |
| 3480 | #ifndef CMAKE_BOOTSTRAP |
| 3481 | cmDocumentation doc; |
| 3482 | auto generators = this->GetGeneratorsDocumentation(); |
| 3483 | doc.AppendSection("Generators", generators); |
| 3484 | std::cerr << '\n'; |
| 3485 | doc.PrintDocumentation(cmDocumentation::ListGenerators, std::cerr); |
| 3486 | #endif |
| 3487 | } |
| 3488 | |
| 3489 | int cmake::CheckBuildSystem() |
| 3490 | { |
no test coverage detected