Changeset 5848
- Timestamp:
- Oct 1, 2009, 11:11:01 AM (15 years ago)
- Location:
- code/branches/core5
- Files:
-
- 4 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core5/bin/CMakeLists.txt
r5695 r5848 26 26 27 27 # Create run scripts for Windows to manually add the DLL path when executing 28 SET(RUN_SCRIPTS run standalone client1 client2 server dedicated )28 SET(RUN_SCRIPTS run standalone client1 client2 server dedicated dedicatedClient) 29 29 IF(WIN32) 30 30 FOREACH(_script ${RUN_SCRIPTS}) -
code/branches/core5/src/orxonox/Main.cc
r5843 r5848 48 48 SetCommandLineSwitch(dedicated).information("Start in dedicated server mode"); 49 49 SetCommandLineSwitch(standalone).information("Start in standalone mode"); 50 SetCommandLineSwitch(dedicatedClient).information("Start in dedicated client mode"); 50 51 51 52 DeclareToluaInterface(Orxonox); … … 67 68 " standalone,server,client" 68 69 " level" 69 " dedicated "70 " dedicated,dedicatedClient" 70 71 " level" 71 72 " ioConsole" … … 83 84 else if (CommandLine::getValue("dedicated").getBool()) 84 85 Game::getInstance().requestStates("dedicated, level"); 86 else if (CommandLine::getValue("dedicatedClient").getBool()) 87 Game::getInstance().requestStates("dedicatedClient, level"); 85 88 else if (CommandLine::getValue("console").getBool()) 86 89 Game::getInstance().requestStates("ioConsole"); -
code/branches/core5/src/orxonox/gamestates/CMakeLists.txt
r5842 r5848 2 2 GSClient.cc 3 3 GSDedicated.cc 4 GSDedicatedClient.cc 4 5 GSGraphics.cc 5 6 GSIOConsole.cc
Note: See TracChangeset
for help on using the changeset viewer.