Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 7129 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
RevLine 
[5722]1SET_SOURCE_FILES(QUESTSYSTEM_SRC_FILES
[2131]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
[2261]13  QuestEffectBeacon.cc
[2131]14  QuestHint.cc
15  QuestItem.cc
[2662]16  QuestListener.cc
[2131]17  QuestManager.cc
[2911]18  QuestNotification.cc
[2131]19)
[5693]20
21ADD_SUBDIRECTORY(notifications)
22
[5722]23ORXONOX_ADD_LIBRARY(questsystem
[5693]24  MODULE
[5749]25  FIND_HEADER_FILES
[5693]26  TOLUA_FILES
27    QuestManager.h
[7072]28    QuestDescription.h
29    Quest.h
30    QuestHint.h
[5693]31  DEFINE_SYMBOL
[5722]32    "QUESTSYSTEM_SHARED_BUILD"
[5749]33  PCH_FILE
34    QuestsystemPrecompiledHeaders.h
[5693]35  LINK_LIBRARIES
36    orxonox
[6800]37    objects
[5693]38    overlays
[5722]39  SOURCE_FILES ${QUESTSYSTEM_SRC_FILES}
[5693]40)
Note: See TracBrowser for help on using the repository browser.