Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/objecthierarchy/src/orxonox/CMakeLists.txt @ 1953

Last change on this file since 1953 was 1953, checked in by landauf, 16 years ago

added chat overlay

  • Property svn:eol-style set to native
File size: 2.2 KB
RevLine 
[1505]1SET( ORXONOX_SRC_FILES
2  GraphicsEngine.cc
3  Main.cc
[1535]4  Settings.cc
[1747]5  SignalHandler.cc
[1505]6
[1755]7  gamestates/GSClient.cc
8  gamestates/GSDedicated.cc
9  gamestates/GSGraphics.cc
10  gamestates/GSGUI.cc
11  gamestates/GSIOConsole.cc
12  gamestates/GSLevel.cc
13  gamestates/GSRoot.cc
14  gamestates/GSServer.cc
15  gamestates/GSStandalone.cc
16
17  gui/GUIManager.cc
18  gui/OgreCEGUIRenderer.cpp
19  gui/OgreCEGUIResourceProvider.cpp
20  gui/OgreCEGUITexture.cpp
21
[1625]22  overlays/OrxonoxOverlay.cc
23  overlays/OverlayGroup.cc
24  overlays/OverlayText.cc
25
26  overlays/console/InGameConsole.cc
27
28  overlays/debug/DebugFPSText.cc
29  overlays/debug/DebugRTRText.cc
30
31  overlays/hud/HUDBar.cc
32  overlays/hud/HUDNavigation.cc
33  overlays/hud/HUDRadar.cc
34  overlays/hud/HUDSpeedBar.cc
[1953]35  overlays/hud/ChatOverlay.cc
[1625]36
[1505]37  tools/BillboardSet.cc
38  tools/Light.cc
39  tools/Mesh.cc
[1553]40  tools/ParticleInterface.cc
[1625]41  tools/TextureGenerator.cc
[1505]42  tools/Timer.cc
[1625]43  tools/WindowEventListener.cc
[1505]44
[1940]45  objects/worldentities/WorldEntity.cc
46  objects/worldentities/PositionableEntity.cc
[1916]47#  objects/Backlight.cc
[1505]48  objects/Camera.cc
49  objects/CameraHandler.cc
[1916]50#  objects/ParticleSpawner.cc
[1817]51  objects/Radar.cc
52  objects/RadarListener.cc
53  objects/RadarViewable.cc
[1535]54  objects/Tickable.cc
[1505]55
[1940]56  objects/infos/Info.cc
57  objects/infos/LevelInfo.cc
58  objects/infos/PlayerInfo.cc
59
60  objects/gametypes/Gametype.cc
61
[1844]62  tolua/tolua_bind.cc
[1505]63)
64
[1810]65GET_TARGET_PROPERTY(TOLUA_EXE tolua_orxonox LOCATION)
[1505]66ADD_CUSTOM_COMMAND(
[1843]67  OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.cc ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.h
[1755]68  COMMAND ${TOLUA_EXE} -n Orxonox -o ../../src/orxonox/tolua/tolua_bind.cc -H ../../src/orxonox/tolua/tolua_bind.h ../../src/orxonox/tolua/tolua.pkg
[1815]69  DEPENDS
70    tolua_orxonox
71    tolua/tolua.pkg
72    gui/GUIManager.h
[1505]73  WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/bin/lib
74)
75       
76ADD_EXECUTABLE( orxonox ${ORXONOX_SRC_FILES} )
77
78IF(NETWORKTRAFFIC_TESTING_ENABLED)
79
80  SET( ORXONOXS_SRC_FILES
81    GraphicsEngine.cc
82    objects/Camera.cc
83    objects/CameraHandler.cc
84  )
85
86  ADD_LIBRARY(orxonoxs SHARED ${ORXONOX_SRC_FILES})
87ENDIF(NETWORKTRAFFIC_TESTING_ENABLED)
88
89TARGET_LINK_LIBRARIES( orxonox
90  ${OGRE_LIBRARIES}
[1755]91  ${CEGUI_LIBRARIES}
[1810]92  lua_orxonox
93  ceguilua_orxonox
94  tinyxml_orxonox
95  tolualib_orxonox
[1505]96  util
97  core
98  audio
99  network
100)
101
Note: See TracBrowser for help on using the repository browser.