Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 15, 2008, 10:09:02 AM (17 years ago)
Author:
scheusso
Message:

new dummy[server,client]4; adapted connectionmanager to new boost::thread syntax

Location:
code/branches/merge/src/orxonox
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/merge/src/orxonox/CMakeLists.txt

    r1264 r1278  
    4343ADD_EXECUTABLE( orxonox ${ORXONOX_SRC_FILES} )
    4444
     45IF(NETWORKTRAFFIC_TESTING_ENABLED)
     46
     47  SET( ORXONOXS_SRC_FILES
     48    GraphicsEngine.cc
     49    objects/Ambient.cc
     50    objects/Camera.cc
     51    objects/CameraHandler.cc
     52    objects/Explosion.cc
     53    objects/Model.cc
     54    objects/NPC.cc
     55    objects/Projectile.cc
     56    objects/Skybox.cc
     57    objects/SpaceShip.cc
     58    objects/WorldEntity.cc
     59  )
     60
     61  ADD_LIBRARY(orxonoxs SHARED ${ORXONOX_SRC_FILES})
     62ENDIF(NETWORKTRAFFIC_TESTING_ENABLED)
     63
    4564TARGET_LINK_LIBRARIES( orxonox
    4665  ${OGRE_LIBRARIES}
  • code/branches/merge/src/orxonox/GraphicsEngine.cc

    r1270 r1278  
    99 *   modify it under the terms of the GNU General Public License
    1010 *   as published by the Free Software Foundation; either version 2
    11  *   of the License, or (at your option) any later version.
    12  *
     11 *   of the License, or (atl your option) any later version.
     12 *lo
    1313 *   This program is distributed in the hope that it will be useful,
    1414 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
     
    137137#endif
    138138
    139     // create a logManager
     139/*    // create a logManager
    140140    // note: If there's already a logManager, Ogre will complain by a failed assertation.
    141141    // but that shouldn't happen, since this is the first time to create a logManager..
     
    148148      myLog = logger->createLog("ogre.log", true, false, true);
    149149    else
    150       myLog = logger->createLog(this->ogreLogfile_, true, false, false);
     150          myLog = logger->createLog(this->ogreLogfile_, true, false, false);
    151151    CCOUT(4) << "Ogre Log created" << std::endl;
    152152
    153153    myLog->setLogDetail(Ogre::LL_BOREME);
    154     myLog->addListener(this);
     154    myLog->addListener(this);*/
    155155
    156156    // Root will detect that we've already created a Log
Note: See TracChangeset for help on using the changeset viewer.