| 651 | } |
| 652 | |
| 653 | bool cmDocumentation::PrintHelpOneProperty(std::ostream& os) |
| 654 | { |
| 655 | std::string pname = cmSystemTools::HelpFileName(this->CurrentArgument); |
| 656 | if (this->PrintFiles(os, cmStrCat("prop_*/", pname))) { |
| 657 | return true; |
| 658 | } |
| 659 | // Argument was not a property. Complain. |
| 660 | os << "Argument \"" << this->CurrentArgument |
| 661 | << "\" to --help-property is not a CMake property. " |
| 662 | "Use --help-property-list to see all properties.\n"; |
| 663 | return false; |
| 664 | } |
| 665 | |
| 666 | bool cmDocumentation::PrintHelpListProperties(std::ostream& os) |
| 667 | { |
no test coverage detected