Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/modules/overlays/CMakeLists.txt @ 11704

Last change on this file since 11704 was 11704, checked in by landauf, 6 years ago

[HUD_HS16] fixed wrong dependency between overlays and pickup module: pickup should NOT depend on overlays; instead overlays should use pickup.

also reverted all changes from HUD_HS16 in PickupManager for several reasons:

  • calling HUDPickupSystem is not necessary anymore due to the fixed dependencies
  • adding a console command is not necessary because there is already a full GUI for this purpose (press F4)
  • limiting the number of pickups to 10 is a bad idea because PickupManager manages pickups for ALL players in the game
  • Property svn:eol-style set to native
File size: 357 bytes
RevLine 
[5693]1SET_SOURCE_FILES(OVERLAYS_SRC_FILES
[2126]2  OverlayText.cc
[3099]3  FadeoutText.cc
[2957]4  GUIOverlay.cc
[2131]5)
[2126]6
[5751]7ADD_SUBDIRECTORY(debugging)
[2710]8ADD_SUBDIRECTORY(hud)
9ADD_SUBDIRECTORY(stats)
[2126]10
[5693]11ORXONOX_ADD_LIBRARY(overlays
12  MODULE
13  FIND_HEADER_FILES
[5749]14  PCH_FILE
15    OverlaysPrecompiledHeaders.h
[5693]16  LINK_LIBRARIES
17    orxonox
[11704]18    pickup
[11056]19    weapons
[5693]20  SOURCE_FILES ${OVERLAYS_SRC_FILES}
21)
Note: See TracBrowser for help on using the repository browser.