| 817 | } |
| 818 | |
| 819 | void SetupHelpOptions(ArgsManager& args) |
| 820 | { |
| 821 | args.AddArg("-help", "Print this help message and exit (also -h or -?)", ArgsManager::ALLOW_ANY, OptionsCategory::OPTIONS); |
| 822 | args.AddHiddenArgs({"-h", "-?"}); |
| 823 | } |
| 824 | |
| 825 | std::string HelpMessageGroup(const std::string &message) { |
| 826 | return std::string(message) + std::string("\n\n"); |
no test coverage detected