Last change
on this file since 455 was
454,
checked in by landauf, 17 years ago
|
no idea if this works: added chrigis SignalHandler from orxonox_v1 to catch SIGSEGV, SIGABRT and SIGILL signals and write debug informations into orxonox.log
|
File size:
1.3 KB
|
Line | |
---|
1 | PROJECT(Orxonox) |
---|
2 | |
---|
3 | # create a few variables to simplify life |
---|
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 |
---|
16 | orxonox/objects/test1.cc |
---|
17 | orxonox/objects/test2.cc |
---|
18 | orxonox/objects/test3.cc |
---|
19 | ) |
---|
20 | |
---|
21 | SET(INC_FILES |
---|
22 | loader/LevelLoader.h |
---|
23 | xml/xmlParser.h |
---|
24 | orxonox/core/CoreIncludes.h |
---|
25 | orxonox/core/Debug.h |
---|
26 | orxonox/core/Identifier.h |
---|
27 | orxonox/core/Factory.h |
---|
28 | orxonox/core/ClassFactory.h |
---|
29 | orxonox/core/IdentifierList.h |
---|
30 | orxonox/core/ObjectList.h |
---|
31 | orxonox/core/MetaObjectList.h |
---|
32 | orxonox/core/Iterator.h |
---|
33 | orxonox/core/OrxonoxClass.h |
---|
34 | orxonox/core/ConfigValueContainer.h |
---|
35 | orxonox/core/SignalHandler.h |
---|
36 | orxonox/objects/BaseObject.h |
---|
37 | orxonox/objects/Test.h |
---|
38 | orxonox/objects/test1.h |
---|
39 | orxonox/objects/test2.h |
---|
40 | orxonox/objects/test3.h |
---|
41 | orxonox/objects/Tickable.h |
---|
42 | orxonox/objects/Timer.h |
---|
43 | ) |
---|
44 | |
---|
45 | #Creates an executable |
---|
46 | ADD_EXECUTABLE(../bin/main ${SRC_FILES} ${INC_FILES}) |
---|
47 | #Links the executable against OGRE and OIS |
---|
48 | TARGET_LINK_LIBRARIES(../bin/main ${OGRE_LIBRARIES} ${OIS_LIBRARIES} ${CEGUI_LIBRARIES} ${CEGUI_OGRE_LIBRARIES}) |
---|
49 | |
---|
Note: See
TracBrowser
for help on using the repository browser.