Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/modules/notifications/CMakeLists.txt @ 7193

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

Added NotificationDispatcher, class that can, upon being triggered, dispatch (send/display) a specified Notification.
Additionally a NotificationDispatcher called CommandNotification, that, upon being triggered, displays a Notification with a message and the name of the key that the command is mapped to. It is envisioned to be used in the, soon to be, tutorial level.
Also: Small bugfix in Notification.

  • Property svn:eol-style set to native
File size: 406 bytes
Line 
1SET_SOURCE_FILES(NOTIFICATIONS_SRC_FILES
2  Notification.cc
3  NotificationDispatcher.cc
4  NotificationManager.cc
5  NotificationOverlay.cc
6  NotificationQueue.cc
7)
8
9ADD_SUBDIRECTORY(dispatchers)
10
11ORXONOX_ADD_LIBRARY(notifications
12  MODULE
13  FIND_HEADER_FILES
14  TOLUA_FILES
15  PCH_FILE
16    NotificationsPrecompiledHeaders.h
17  LINK_LIBRARIES
18    orxonox
19    overlays
20  SOURCE_FILES ${NOTIFICATIONS_SRC_FILES}
21)
Note: See TracBrowser for help on using the repository browser.