Changeset 341 for code/branches/FICN/src/orxonox
- Timestamp:
- Nov 28, 2007, 9:54:59 PM (17 years ago)
- Location:
- code/branches/FICN/src/orxonox
- Files:
-
- 9 deleted
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/orxonox/CMakeLists.txt
r337 r341 1 1 PROJECT(Orxonox) 2 2 3 SET(SRC_FILES orxonox.cc spaceship_steering.cc) 3 SET( ORXONOX_SRC_FILES 4 orxonox.cc 5 spaceship_steering.cc 6 ) 4 7 5 ADD_EXECUTABLE(../../bin/main ${ SRC_FILES})8 ADD_EXECUTABLE(../../bin/main ${ORXONOX_SRC_FILES}) 6 9 7 TARGET_LINK_LIBRARIES(../../bin/main ${OGRE_LIBRARIES} ${OIS_LIBRARIES} loader )8 9 INCLUDE_DIRECTORIES(..)10 10 11 11 ADD_SUBDIRECTORY(core) 12 ADD_SUBDIRECTORY(hud) 12 13 ADD_SUBDIRECTORY(objects) 13 ADD_SUBDIRECTORY(hud)14 14 ADD_SUBDIRECTORY(weapon) 15 16 17 TARGET_LINK_LIBRARIES( ../../bin/main 18 ${OGRE_LIBRARIES} 19 ${OIS_LIBRARIES} 20 ${ENet_LIBRARY} 21 loader 22 network 23 core 24 hud 25 objects 26 weapon 27 ) -
code/branches/FICN/src/orxonox/core/CMakeLists.txt
r337 r341 1 1 PROJECT(Orxonox) 2 2 3 SET(SRC_FILES IdentifierList.cc Identifier.cc MetaObjectList.cc Factory.cc OrxonoxClass.cc) 3 SET( CORE_SRC_FILES 4 Factory.cc 5 IdentifierList.cc 6 Identifier.cc 7 MetaObjectList.cc 8 OrxonoxClass.cc 9 ) 4 10 5 ADD_LIBRARY(core ${ SRC_FILES})11 ADD_LIBRARY(core ${CORE_SRC_FILES}) -
code/branches/FICN/src/orxonox/hud/CMakeLists.txt
r337 r341 1 1 PROJECT(Orxonox) 2 2 3 SET(SRC_FILES hud_overlay.cc test_overlay.cc) 3 SET( HUD_SRC_FILES 4 hud_overlay.cc 5 test_overlay.cc 6 ) 4 7 5 ADD_LIBRARY(objects ${SRC_FILES}) 8 LINK_DIRECTORIES(.) 9 10 ADD_LIBRARY(hud ${HUD_SRC_FILES}) -
code/branches/FICN/src/orxonox/hud/hud_overlay.h
r340 r341 33 33 #include "OgrePrerequisites.h" 34 34 35 #include " ../orxonox_prerequisites.h"35 #include "orxonox/orxonox_prerequisites.h" 36 36 37 37 -
code/branches/FICN/src/orxonox/hud/test_overlay.h
r340 r341 33 33 #include "OgrePrerequisites.h" 34 34 35 #include " ../orxonox_prerequisites.h"35 #include "orxonox/orxonox_prerequisites.h" 36 36 37 37 -
code/branches/FICN/src/orxonox/objects/BaseObject.h
r258 r341 2 2 #define _BaseObject_H__ 3 3 4 #include " ../core/IdentifierIncludes.h"4 #include "orxonox/core/IdentifierIncludes.h" 5 5 6 6 namespace orxonox -
code/branches/FICN/src/orxonox/objects/CMakeLists.txt
r337 r341 1 1 PROJECT(Orxonox) 2 2 3 SET(SRC_FILES BaseObject.cc test1.cc test2.cc test3.cc) 3 SET( OBJECTS_SRC_FILES 4 BaseObject.cc 5 test1.cc 6 test2.cc 7 test3.cc 8 ) 4 9 5 ADD_LIBRARY(objects ${ SRC_FILES})10 ADD_LIBRARY(objects ${OBJECTS_SRC_FILES}) -
code/branches/FICN/src/orxonox/orxonox.cc
r340 r341 42 42 #include "loader/LevelLoader.h" 43 43 44 #include "orxonox.h"45 46 #include "Flocking.h"47 48 44 #include "spaceship_steering.h" 49 45 SpaceshipSteering* steering; 50 51 46 52 47 -
code/branches/FICN/src/orxonox/weapon/CMakeLists.txt
r337 r341 1 1 PROJECT(Orxonox) 2 2 3 # create a few variables to simplify life 4 SET( WEAPON_SRC 3 SET( WEAPON_SRC_FILES 5 4 ammunition_dump.cc 6 5 barrel_gun.cc … … 11 10 ) 12 11 13 INCLUDE_DIRECTORIES(..) 14 15 ADD_LIBRARY(weapon ${WEAPON_SRC}) 12 ADD_LIBRARY(weapon ${WEAPON_SRC_FILES}) -
code/branches/FICN/src/orxonox/weapon/ammunition_dump.cc
r337 r341 26 26 */ 27 27 28 #include " run_manager.h"28 #include "orxonox/run_manager.h" 29 29 30 30 #include "ammunition_dump.h" -
code/branches/FICN/src/orxonox/weapon/ammunition_dump.h
r337 r341 32 32 #include "OgrePrerequisites.h" 33 33 34 #include "orxonox _prerequisites.h"34 #include "orxonox/orxonox_prerequisites.h" 35 35 36 36 -
code/branches/FICN/src/orxonox/weapon/barrel_gun.cc
r337 r341 33 33 #include "OgreSceneManager.h" 34 34 35 #include "orxonox/inertial_node.h" 36 35 37 #include "bullet.h" 36 38 #include "bullet_manager.h" 37 #include "inertial_node.h"38 39 #include "ammunition_dump.h" 39 40 #include "base_weapon.h" -
code/branches/FICN/src/orxonox/weapon/barrel_gun.h
r337 r341 32 32 #include "OgrePrerequisites.h" 33 33 34 #include "orxonox _prerequisites.h"34 #include "orxonox/orxonox_prerequisites.h" 35 35 36 36 -
code/branches/FICN/src/orxonox/weapon/base_weapon.cc
r337 r341 33 33 #include "OgreSceneManager.h" 34 34 35 #include "orxonox/inertial_node.h" 36 #include "orxonox/run_manager.h" 37 35 38 #include "bullet.h" 36 39 #include "bullet_manager.h" 37 #include "inertial_node.h"38 40 #include "ammunition_dump.h" 39 #include "run_manager.h"40 41 41 42 #include "base_weapon.h" -
code/branches/FICN/src/orxonox/weapon/base_weapon.h
r337 r341 32 32 #include "OgrePrerequisites.h" 33 33 34 #include "orxonox _prerequisites.h"34 #include "orxonox/orxonox_prerequisites.h" 35 35 36 36 -
code/branches/FICN/src/orxonox/weapon/bullet.h
r337 r341 32 32 #include "OgrePrerequisites.h" 33 33 34 #include "orxonox _prerequisites.h"34 #include "orxonox/orxonox_prerequisites.h" 35 35 36 36 -
code/branches/FICN/src/orxonox/weapon/bullet_manager.h
r337 r341 32 32 #include "OgrePrerequisites.h" 33 33 34 #include "orxonox _prerequisites.h"34 #include "orxonox/orxonox_prerequisites.h" 35 35 36 36 -
code/branches/FICN/src/orxonox/weapon/weapon_station.h
r337 r341 32 32 #include "OgrePrerequisites.h" 33 33 34 #include "orxonox _prerequisites.h"34 #include "orxonox/orxonox_prerequisites.h" 35 35 36 36
Note: See TracChangeset
for help on using the changeset viewer.