| 529 | } |
| 530 | |
| 531 | bool cmDocumentation::PrintFiles(std::ostream& os, std::string const& pattern) |
| 532 | { |
| 533 | bool found = false; |
| 534 | std::vector<std::string> files; |
| 535 | this->GlobHelp(files, pattern); |
| 536 | std::sort(files.begin(), files.end()); |
| 537 | cmRST r(os, cmStrCat(cmSystemTools::GetCMakeRoot(), "/Help")); |
| 538 | for (std::string const& f : files) { |
| 539 | found = r.ProcessFile(f) || found; |
| 540 | } |
| 541 | return found; |
| 542 | } |
| 543 | |
| 544 | bool cmDocumentation::PrintHelpFull(std::ostream& os) |
| 545 | { |
no test coverage detected