Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

removed WorldEntity, SpaceShip and several other objects
removed SpaceShip-related hacks in network and other places

  • Property svn:eol-style set to native
File size: 2.0 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
35
[1505]36  tools/BillboardSet.cc
37  tools/Light.cc
38  tools/Mesh.cc
[1553]39  tools/ParticleInterface.cc
[1625]40  tools/TextureGenerator.cc
[1505]41  tools/Timer.cc
[1625]42  tools/WindowEventListener.cc
[1505]43
[1916]44#  objects/Backlight.cc
[1505]45  objects/Camera.cc
46  objects/CameraHandler.cc
[1916]47#  objects/ParticleSpawner.cc
[1817]48  objects/Radar.cc
49  objects/RadarListener.cc
50  objects/RadarViewable.cc
[1535]51  objects/Tickable.cc
[1505]52
[1844]53  tolua/tolua_bind.cc
[1505]54)
55
[1810]56GET_TARGET_PROPERTY(TOLUA_EXE tolua_orxonox LOCATION)
[1505]57ADD_CUSTOM_COMMAND(
[1843]58  OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.cc ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.h
[1755]59  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]60  DEPENDS
61    tolua_orxonox
62    tolua/tolua.pkg
63    gui/GUIManager.h
[1505]64  WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/bin/lib
65)
66       
67ADD_EXECUTABLE( orxonox ${ORXONOX_SRC_FILES} )
68
69IF(NETWORKTRAFFIC_TESTING_ENABLED)
70
71  SET( ORXONOXS_SRC_FILES
72    GraphicsEngine.cc
73    objects/Camera.cc
74    objects/CameraHandler.cc
75  )
76
77  ADD_LIBRARY(orxonoxs SHARED ${ORXONOX_SRC_FILES})
78ENDIF(NETWORKTRAFFIC_TESTING_ENABLED)
79
80TARGET_LINK_LIBRARIES( orxonox
81  ${OGRE_LIBRARIES}
[1755]82  ${CEGUI_LIBRARIES}
[1810]83  lua_orxonox
84  ceguilua_orxonox
85  tinyxml_orxonox
86  tolualib_orxonox
[1505]87  util
88  core
89  audio
90  network
91)
92
Note: See TracBrowser for help on using the repository browser.