Changeset 1278 for code/branches/merge/src/orxonox
- Timestamp:
- May 15, 2008, 10:09:02 AM (17 years ago)
- Location:
- code/branches/merge/src/orxonox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/merge/src/orxonox/CMakeLists.txt
r1264 r1278 43 43 ADD_EXECUTABLE( orxonox ${ORXONOX_SRC_FILES} ) 44 44 45 IF(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}) 62 ENDIF(NETWORKTRAFFIC_TESTING_ENABLED) 63 45 64 TARGET_LINK_LIBRARIES( orxonox 46 65 ${OGRE_LIBRARIES} -
code/branches/merge/src/orxonox/GraphicsEngine.cc
r1270 r1278 9 9 * modify it under the terms of the GNU General Public License 10 10 * 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 13 13 * This program is distributed in the hope that it will be useful, 14 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of … … 137 137 #endif 138 138 139 // create a logManager139 /* // create a logManager 140 140 // note: If there's already a logManager, Ogre will complain by a failed assertation. 141 141 // but that shouldn't happen, since this is the first time to create a logManager.. … … 148 148 myLog = logger->createLog("ogre.log", true, false, true); 149 149 else 150 myLog = logger->createLog(this->ogreLogfile_, true, false, false);150 myLog = logger->createLog(this->ogreLogfile_, true, false, false); 151 151 CCOUT(4) << "Ogre Log created" << std::endl; 152 152 153 153 myLog->setLogDetail(Ogre::LL_BOREME); 154 myLog->addListener(this); 154 myLog->addListener(this);*/ 155 155 156 156 // Root will detect that we've already created a Log
Note: See TracChangeset
for help on using the changeset viewer.