Skip to content
Snippets Groups Projects
Commit e286e15f authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Joseph Mirabel
Browse files

Improve doc and help message.

parent 922ed4e1
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,10 @@
/// To get some help on the command line options, use
/// \code{bash} gepetto-gui --help \endcode
///
/// \section gui_settings Configuration files
///
/// See gepetto::gui::Settings::readSettingFile for more details on configuration files.
///
/// \section gui_extending_interface Extending the interface
///
/// There are two ways of extending the interface: Python and C++. Python
......
......@@ -24,7 +24,7 @@ Q_DECLARE_METATYPE(QItemSelection)
void setupApplication ()
{
QCoreApplication::setOrganizationName("gepetto-gui");
QCoreApplication::setOrganizationDomain("https://github.com/jmirabel/gepetto-viewer-corba");
QCoreApplication::setOrganizationDomain("https://github.com/humanoid-path-planner/gepetto-viewer-corba");
QCoreApplication::setApplicationName("gepetto-gui");
QCoreApplication::setApplicationVersion("@PROJECT_VERSION@");
......
......@@ -94,7 +94,7 @@ namespace gepetto {
osg::ApplicationUsage::Type help (arguments.readHelpType());
au->addCommandLineOption("-v or --verbose", "Activate verbose output");
au->addCommandLineOption("-g or --generate-config-files", "generate configuration files and quit");
au->addCommandLineOption("-g or --generate-config-files", "generate configuration files in " + installDirectory.toStdString() + "/etc and quit");
au->addCommandLineOption("-c or --config-file", "set the configuration file (do not include .conf)", configurationFile);
au->addCommandLineOption("--predefined-robots", "set the predefined robots configuration file (do not include .conf)", predifinedRobotConf);
au->addCommandLineOption("--predefined-environments", "set the predefined environments configuration file (do not include .conf)", predifinedEnvConf);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment