Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/Presentation_FS19/src/modules/pickup/CMakeLists.txt @ 12412

Last change on this file since 12412 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: 408 bytes
Line 
1SET_SOURCE_FILES(PICKUP_SRC_FILES
2  CollectiblePickup.cc
3  Pickup.cc
4  PickupCollection.cc
5  PickupManager.cc
6  PickupRepresentation.cc
7  PickupSpawner.cc
8)
9
10ADD_SUBDIRECTORY(items)
11
12ORXONOX_ADD_LIBRARY(pickup
13  MODULE
14  FIND_HEADER_FILES
15  TOLUA_FILES
16    PickupManager.h
17    PickupRepresentation.h
18  PCH_FILE
19    PickupPrecompiledHeaders.h
20  LINK_LIBRARIES
21    orxonox
22  SOURCE_FILES ${PICKUP_SRC_FILES}
23)
Note: See TracBrowser for help on using the repository browser.