Made command-line arguments more Unix-compliant.

This commit is contained in:
Gunnar Beutner 2013-02-06 09:45:44 +01:00
parent d463bed478
commit 25e34fa5d2
1 changed files with 2 additions and 2 deletions

View File

@ -161,13 +161,13 @@ int main(int argc, char **argv)
po::options_description desc("Supported options");
desc.add_options()
("help,h", "show this help message")
("help", "show this help message")
("version,V", "show version information")
("library,l", po::value<vector<String> >(), "load a library")
("include,I", po::value<vector<String> >(), "add include search directory")
("config,c", po::value<vector<String> >(), "parse a configuration file")
("validate,v", "exit after validating the configuration")
("debug", "enable debugging")
("debug,x", "enable debugging")
("daemonize,d", "daemonize after reading the configuration files")
;