MCPcopy Create free account
hub / github.com/Kitware/CMake / PrintHelpOneModule

Method PrintHelpOneModule

Source/cmDocumentation.cxx:625–635  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

623}
624
625bool cmDocumentation::PrintHelpOneModule(std::ostream& os)
626{
627 std::string mname = this->CurrentArgument;
628 if (this->PrintFiles(os, cmStrCat("module/", mname))) {
629 return true;
630 }
631 // Argument was not a module. Complain.
632 os << "Argument \"" << this->CurrentArgument
633 << "\" to --help-module is not a CMake module.\n";
634 return false;
635}
636
637bool cmDocumentation::PrintHelpListModules(std::ostream& os)
638{

Callers 1

PrintDocumentationMethod · 0.95

Calls 2

PrintFilesMethod · 0.95
cmStrCatFunction · 0.70

Tested by

no test coverage detected