Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 1916 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
Line 
1SET( ORXONOX_SRC_FILES
2  GraphicsEngine.cc
3  Main.cc
4  Settings.cc
5  SignalHandler.cc
6
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
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
36  tools/BillboardSet.cc
37  tools/Light.cc
38  tools/Mesh.cc
39  tools/ParticleInterface.cc
40  tools/TextureGenerator.cc
41  tools/Timer.cc
42  tools/WindowEventListener.cc
43
44#  objects/Backlight.cc
45  objects/Camera.cc
46  objects/CameraHandler.cc
47#  objects/ParticleSpawner.cc
48  objects/Radar.cc
49  objects/RadarListener.cc
50  objects/RadarViewable.cc
51  objects/Tickable.cc
52
53  tolua/tolua_bind.cc
54)
55
56GET_TARGET_PROPERTY(TOLUA_EXE tolua_orxonox LOCATION)
57ADD_CUSTOM_COMMAND(
58  OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.cc ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.h
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
60  DEPENDS
61    tolua_orxonox
62    tolua/tolua.pkg
63    gui/GUIManager.h
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}
82  ${CEGUI_LIBRARIES}
83  lua_orxonox
84  ceguilua_orxonox
85  tinyxml_orxonox
86  tolualib_orxonox
87  util
88  core
89  audio
90  network
91)
92
Note: See TracBrowser for help on using the repository browser.