Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 2074 was 2074, checked in by landauf, 16 years ago
  • added EventListener: this class fires an event if another class with a specified name fires
  • added EventDispatcher: this class dispatches events to several other classes (EventTarget) if it gets an event itself
  • added EventTarget: used in EventDispatcher to access all classes with a specified name
  • added XMLNameListener: this listener gets called every time a new class was loaded through XML with a name != "". used to find classes with a given name even if they're not existing at the moment.
  • Property svn:eol-style set to native
File size: 3.1 KB
RevLine 
[1505]1SET( ORXONOX_SRC_FILES
[2073]2  CameraManager.cc
[1505]3  GraphicsEngine.cc
[2027]4  LevelManager.cc
[1505]5  Main.cc
[1535]6  Settings.cc
[1505]7
[1755]8  gamestates/GSClient.cc
9  gamestates/GSDedicated.cc
10  gamestates/GSGraphics.cc
11  gamestates/GSGUI.cc
12  gamestates/GSIOConsole.cc
13  gamestates/GSLevel.cc
14  gamestates/GSRoot.cc
15  gamestates/GSServer.cc
16  gamestates/GSStandalone.cc
17
18  gui/GUIManager.cc
19  gui/OgreCEGUIRenderer.cpp
20  gui/OgreCEGUIResourceProvider.cpp
21  gui/OgreCEGUITexture.cpp
22
[1625]23  overlays/OrxonoxOverlay.cc
24  overlays/OverlayGroup.cc
25  overlays/OverlayText.cc
26
27  overlays/console/InGameConsole.cc
28
29  overlays/debug/DebugFPSText.cc
30  overlays/debug/DebugRTRText.cc
31
32  overlays/hud/HUDBar.cc
33  overlays/hud/HUDNavigation.cc
34  overlays/hud/HUDRadar.cc
35  overlays/hud/HUDSpeedBar.cc
[1953]36  overlays/hud/ChatOverlay.cc
[1625]37
[1505]38  tools/BillboardSet.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
[2074]45  objects/EventListener.cc
46  objects/EventDispatcher.cc
47  objects/EventTarget.cc
[1817]48  objects/Radar.cc
49  objects/RadarListener.cc
50  objects/RadarViewable.cc
[1535]51  objects/Tickable.cc
[1957]52  objects/Test.cc
[1959]53  objects/Script.cc
[1505]54
[2027]55  objects/Scene.cc
56  objects/worldentities/WorldEntity.cc
57  objects/worldentities/PositionableEntity.cc
58  objects/worldentities/MovableEntity.cc
59  objects/worldentities/ControllableEntity.cc
60  objects/worldentities/Model.cc
[2044]61  objects/worldentities/Billboard.cc
62  objects/worldentities/BlinkingBillboard.cc
63  objects/worldentities/Light.cc
[2027]64  objects/worldentities/Camera.cc
[2042]65  objects/worldentities/CameraPosition.cc
[2019]66  objects/worldentities/SpawnPoint.cc
[2065]67  objects/worldentities/ParticleEmitter.cc
68  objects/worldentities/ParticleSpawner.cc
[2027]69#  objects/worldentities/Backlight.cc
[2019]70
[2027]71  objects/worldentities/triggers/Trigger.cc
72  objects/worldentities/triggers/DistanceTrigger.cc
[2071]73  objects/worldentities/triggers/EventTrigger.cc
[2027]74
[1993]75  objects/worldentities/pawns/Spectator.cc
[2024]76  objects/worldentities/pawns/Pawn.cc
77  objects/worldentities/pawns/SpaceShip.cc
[1993]78
79  objects/controllers/Controller.cc
80  objects/controllers/HumanController.cc
81
[1940]82  objects/infos/Info.cc
[2012]83  objects/infos/Level.cc
[1940]84  objects/infos/PlayerInfo.cc
[2019]85  objects/infos/HumanPlayer.cc
[1940]86
87  objects/gametypes/Gametype.cc
88
[1844]89  tolua/tolua_bind.cc
[1505]90)
91
[1810]92GET_TARGET_PROPERTY(TOLUA_EXE tolua_orxonox LOCATION)
[1505]93ADD_CUSTOM_COMMAND(
[1843]94  OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.cc ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.h
[1755]95  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]96  DEPENDS
97    tolua_orxonox
98    tolua/tolua.pkg
99    gui/GUIManager.h
[1505]100  WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/bin/lib
101)
[1959]102
103
[1505]104ADD_EXECUTABLE( orxonox ${ORXONOX_SRC_FILES} )
105
106IF(NETWORKTRAFFIC_TESTING_ENABLED)
107
108  SET( ORXONOXS_SRC_FILES
109    GraphicsEngine.cc
110    objects/Camera.cc
[2073]111    CameraManager.cc
[1505]112  )
113
114  ADD_LIBRARY(orxonoxs SHARED ${ORXONOX_SRC_FILES})
115ENDIF(NETWORKTRAFFIC_TESTING_ENABLED)
116
117TARGET_LINK_LIBRARIES( orxonox
118  ${OGRE_LIBRARIES}
[1755]119  ${CEGUI_LIBRARIES}
[1810]120  lua_orxonox
121  ceguilua_orxonox
122  tinyxml_orxonox
123  tolualib_orxonox
[1505]124  util
125  core
126  audio
127  network
128)
129
Note: See TracBrowser for help on using the repository browser.