Changeset 774 for code/branches/FICN/src/orxonox
- Timestamp:
- Dec 31, 2007, 4:56:53 PM (17 years ago)
- Location:
- code/branches/FICN/src/orxonox
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/orxonox/CMakeLists.txt
r768 r774 31 31 ) 32 32 33 ADD_EXECUTABLE( main${ORXONOX_SRC_FILES} )33 ADD_EXECUTABLE( orxonox ${ORXONOX_SRC_FILES} ) 34 34 35 SET_TARGET_PROPERTIES( mainPROPERTIES LINK_FLAGS "--no-undefined" )35 SET_TARGET_PROPERTIES( orxonox PROPERTIES LINK_FLAGS "--no-undefined" ) 36 36 37 TARGET_LINK_LIBRARIES( main37 TARGET_LINK_LIBRARIES( orxonox 38 38 ${OGRE_LIBRARIES} 39 39 ${OIS_LIBRARIES} -
code/branches/FICN/src/orxonox/objects/Ambient.h
r733 r774 4 4 #include "../OrxonoxPrereqs.h" 5 5 6 #include " orxonox/core/BaseObject.h"6 #include "core/BaseObject.h" 7 7 8 8 namespace orxonox -
code/branches/FICN/src/orxonox/objects/Camera.h
r733 r774 4 4 #include "../OrxonoxPrereqs.h" 5 5 6 #include " orxonox/core/BaseObject.h"6 #include "core/BaseObject.h" 7 7 8 8 namespace orxonox -
code/branches/FICN/src/orxonox/objects/Skybox.h
r733 r774 4 4 #include "../OrxonoxPrereqs.h" 5 5 6 #include " orxonox/core/BaseObject.h"6 #include "core/BaseObject.h" 7 7 8 8 class TiXmlElement; // Forward declaration -
code/branches/FICN/src/orxonox/objects/Test.h
r734 r774 29 29 #define _Test_H__ 30 30 31 #include " orxonox/core/BaseObject.h"31 #include "core/BaseObject.h" 32 32 #include "../core/CoreIncludes.h" 33 33 -
code/branches/FICN/src/orxonox/objects/WorldEntity.h
r768 r774 11 11 #include "util/tinyxml/tinyxml.h" 12 12 #include "../core/CoreIncludes.h" 13 #include " orxonox/core/BaseObject.h"13 #include "core/BaseObject.h" 14 14 #include "Tickable.h" 15 15 #include "../tools/Mesh.h" -
code/branches/FICN/src/orxonox/objects/test1.h
r742 r774 2 2 #define _Test1_H__ 3 3 4 #include " orxonox/core/BaseObject.h"4 #include "core/BaseObject.h" 5 5 #include "Tickable.h" 6 6 #include "test3.h" -
code/branches/FICN/src/orxonox/objects/test2.h
r768 r774 2 2 #define _Test2_H__ 3 3 4 #include " orxonox/core/BaseObject.h"4 #include "core/BaseObject.h" 5 5 #include "../tools/Timer.h" 6 6 -
code/branches/FICN/src/orxonox/objects/test3.h
r734 r774 2 2 #define _Test3_H__ 3 3 4 #include " orxonox/core/BaseObject.h"4 #include "core/BaseObject.h" 5 5 6 6 namespace orxonox -
code/branches/FICN/src/orxonox/objects/weapon/AmmunitionDump.h
r768 r774 38 38 #include "network/Synchronisable.h" 39 39 //#include "../core/CoreIncludes.h" 40 #include " orxonox/core/BaseObject.h"40 #include "core/BaseObject.h" 41 41 42 42 -
code/branches/FICN/src/orxonox/objects/weapon/BulletManager.h
r768 r774 39 39 #include "util/tinyxml/tinyxml.h" 40 40 #include "../../core/CoreIncludes.h" 41 #include " orxonox/core/BaseObject.h"41 #include "core/BaseObject.h" 42 42 #include "../Tickable.h" 43 43
Note: See TracChangeset
for help on using the changeset viewer.