Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/libraries/src/orxonox/overlays/CMakeLists.txt @ 5627

Last change on this file since 5627 was 5627, checked in by landauf, 15 years ago

Put all specialized overlays into a new library (overlays) which is declared as a plugin.
All files are still in their old directories for the moment, no new export macro defined, I just want to test this on another platform.

  • Property svn:eol-style set to native
File size: 484 bytes
Line 
1ADD_SOURCE_FILES(ORXONOX_SRC_FILES
2  OrxonoxOverlay.cc
3  OverlayGroup.cc
4)
5
6SET_SOURCE_FILES(OVERLAYS_SRC_FILES
7  OverlayText.cc
8  FadeoutText.cc
9  GUIOverlay.cc
10)
11
12ADD_SUBDIRECTORY(debug)
13ADD_SUBDIRECTORY(hud)
14ADD_SUBDIRECTORY(notifications)
15ADD_SUBDIRECTORY(stats)
16
17ORXONOX_ADD_LIBRARY(overlays
18  PLUGIN
19  FIND_HEADER_FILES
20  DEFINE_SYMBOL
21    "OVERLAYS_SHARED_BUILD"
22  PCH_FILE
23    ../OrxonoxPrecompiledHeaders.h
24  LINK_LIBRARIES
25    orxonox
26  SOURCE_FILES ${OVERLAYS_SRC_FILES}
27)
Note: See TracBrowser for help on using the repository browser.