Last change
on this file since 609 was
460,
checked in by landauf, 17 years ago
|
first try to add a WorldEntity. at the moment it's just a class with an Ogre::SceneNode
|
File size:
1.4 KB
|
Rev | Line | |
---|
[258] | 1 | PROJECT(Orxonox) |
---|
| 2 | |
---|
| 3 | # create a few variables to simplify life |
---|
[454] | 4 | SET(SRC_FILES |
---|
| 5 | orxonox/orxonox.cc |
---|
| 6 | loader/LevelLoader.cc |
---|
| 7 | xml/xmlParser.cc |
---|
| 8 | orxonox/core/IdentifierList.cc |
---|
| 9 | orxonox/core/Identifier.cc |
---|
| 10 | orxonox/core/MetaObjectList.cc |
---|
| 11 | orxonox/core/Factory.cc |
---|
| 12 | orxonox/core/OrxonoxClass.cc |
---|
| 13 | orxonox/core/ConfigValueContainer.cc |
---|
| 14 | orxonox/core/SignalHandler.cc |
---|
| 15 | orxonox/objects/BaseObject.cc |
---|
[460] | 16 | orxonox/objects/WorldEntity.cc |
---|
[454] | 17 | orxonox/objects/test1.cc |
---|
| 18 | orxonox/objects/test2.cc |
---|
| 19 | orxonox/objects/test3.cc |
---|
| 20 | ) |
---|
[258] | 21 | |
---|
[454] | 22 | SET(INC_FILES |
---|
| 23 | loader/LevelLoader.h |
---|
| 24 | xml/xmlParser.h |
---|
| 25 | orxonox/core/CoreIncludes.h |
---|
| 26 | orxonox/core/Debug.h |
---|
| 27 | orxonox/core/Identifier.h |
---|
| 28 | orxonox/core/Factory.h |
---|
| 29 | orxonox/core/ClassFactory.h |
---|
| 30 | orxonox/core/IdentifierList.h |
---|
| 31 | orxonox/core/ObjectList.h |
---|
| 32 | orxonox/core/MetaObjectList.h |
---|
| 33 | orxonox/core/Iterator.h |
---|
| 34 | orxonox/core/OrxonoxClass.h |
---|
| 35 | orxonox/core/ConfigValueContainer.h |
---|
| 36 | orxonox/core/SignalHandler.h |
---|
| 37 | orxonox/objects/BaseObject.h |
---|
[460] | 38 | orxonox/objects/WorldEntity.h |
---|
[454] | 39 | orxonox/objects/Test.h |
---|
| 40 | orxonox/objects/test1.h |
---|
| 41 | orxonox/objects/test2.h |
---|
| 42 | orxonox/objects/test3.h |
---|
| 43 | orxonox/objects/Tickable.h |
---|
| 44 | orxonox/objects/Timer.h |
---|
| 45 | ) |
---|
| 46 | |
---|
[258] | 47 | #Creates an executable |
---|
| 48 | ADD_EXECUTABLE(../bin/main ${SRC_FILES} ${INC_FILES}) |
---|
| 49 | #Links the executable against OGRE and OIS |
---|
| 50 | TARGET_LINK_LIBRARIES(../bin/main ${OGRE_LIBRARIES} ${OIS_LIBRARIES} ${CEGUI_LIBRARIES} ${CEGUI_OGRE_LIBRARIES}) |
---|
| 51 | |
---|
Note: See
TracBrowser
for help on using the repository browser.