Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/objecthierarchy/src/CMakeLists.txt @ 461

Last change on this file since 461 was 460, checked in by landauf, 16 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
Line 
1PROJECT(Orxonox)
2
3# create a few variables to simplify life
4SET(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
16        orxonox/objects/WorldEntity.cc
17        orxonox/objects/test1.cc
18        orxonox/objects/test2.cc
19        orxonox/objects/test3.cc
20)
21
22SET(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
38        orxonox/objects/WorldEntity.h
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
47#Creates an executable
48ADD_EXECUTABLE(../bin/main ${SRC_FILES} ${INC_FILES})
49#Links the executable against OGRE and OIS
50TARGET_LINK_LIBRARIES(../bin/main ${OGRE_LIBRARIES} ${OIS_LIBRARIES} ${CEGUI_LIBRARIES} ${CEGUI_OGRE_LIBRARIES})
51
Note: See TracBrowser for help on using the repository browser.