Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 3, 2010, 1:30:59 PM (14 years ago)
Author:
rgrieder
Message:

Added separate page for a commandline argument reference.
It's not too useful, but better than nothing.

Location:
code/branches/doc/src/libraries/core
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • code/branches/doc/src/libraries/core/CommandLineParser.cc

    r7303 r7335  
    4141namespace orxonox
    4242{
     43    //! @cmdarg
    4344    SetCommandLineOnlyArgument(optionsFile, "start.ini").shortcut("o");
    4445
  • code/branches/doc/src/libraries/core/Core.cc

    r7284 r7335  
    7777    Core* Core::singletonPtr_s  = 0;
    7878
     79    //! @cmdarg
    7980    SetCommandLineArgument(settingsFile, "orxonox.ini").information("THE configuration file");
     81    //! @cmdarg
    8082    SetCommandLineSwitch(noIOConsole).information("Use this if you don't want to use the IOConsole (for instance for Lua debugging)");
    8183
    8284#ifdef ORXONOX_PLATFORM_WINDOWS
     85    //! @cmdarg
    8386    SetCommandLineArgument(limitToCPU, 1).information("Limits the program to one CPU/core (1, 2, 3, etc.). Default is the first core (faster than off)");
    8487#endif
  • code/branches/doc/src/libraries/core/PathConfig.cc

    r6417 r7335  
    7070    PathConfig* PathConfig::singletonPtr_s  = 0;
    7171
     72    //! @cmdarg
    7273    SetCommandLineArgument(externalDataPath, "").information("Path to the external data files");
     74    //! @cmdarg
    7375    SetCommandLineOnlyArgument(writingPathSuffix, "").information("Additional subfolder for config and log files");
    7476
  • code/branches/doc/src/libraries/core/input/InputManager.cc

    r7297 r7335  
    6060namespace orxonox
    6161{
     62    //! @cmdarg
    6263    SetCommandLineSwitch(keyboard_no_grab).information("Whether not to exclusively grab the keyboard");
    6364
Note: See TracChangeset for help on using the changeset viewer.