Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/presentation3/src/modules/questsystem/CMakeLists.txt @ 7072

Last change on this file since 7072 was 7072, checked in by dafrick, 14 years ago

Made the QuestGUI completely lua based in an attempt to remove a segfault that occured when closing orxonox. Successfully, I might add. ;)
In the process of doing so I expanded the GUITools by adding a function that calculates the height that text in an input window needs, with word-wrap enabled.
Also fixed a small error in the Quest_PirateAttack level.

  • Property svn:eol-style set to native
File size: 710 bytes
Line 
1SET_SOURCE_FILES(QUESTSYSTEM_SRC_FILES
2  AddQuest.cc
3  AddQuestHint.cc
4  AddReward.cc
5  ChangeQuestStatus.cc
6  CompleteQuest.cc
7  FailQuest.cc
8  GlobalQuest.cc
9  LocalQuest.cc
10  Quest.cc
11  QuestDescription.cc
12  QuestEffect.cc
13  QuestEffectBeacon.cc
14  QuestHint.cc
15  QuestItem.cc
16  QuestListener.cc
17  QuestManager.cc
18  QuestNotification.cc
19)
20
21ADD_SUBDIRECTORY(notifications)
22
23ORXONOX_ADD_LIBRARY(questsystem
24  MODULE
25  FIND_HEADER_FILES
26  TOLUA_FILES
27    QuestManager.h
28    QuestDescription.h
29    Quest.h
30    QuestHint.h
31  DEFINE_SYMBOL
32    "QUESTSYSTEM_SHARED_BUILD"
33  PCH_FILE
34    QuestsystemPrecompiledHeaders.h
35  LINK_LIBRARIES
36    orxonox
37    objects
38    overlays
39  SOURCE_FILES ${QUESTSYSTEM_SRC_FILES}
40)
Note: See TracBrowser for help on using the repository browser.