Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 2071 was 2071, checked in by landauf, 16 years ago
  • fixed another bug in Trigger
  • added EventTrigger which listens on "trigger" events
  • Property svn:eol-style set to native
File size: 3.0 KB
RevLine 
[1505]1SET( ORXONOX_SRC_FILES
[2030]2  CameraHandler.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
[1817]45  objects/Radar.cc
46  objects/RadarListener.cc
47  objects/RadarViewable.cc
[1535]48  objects/Tickable.cc
[1957]49  objects/Test.cc
[1959]50  objects/Script.cc
[1505]51
[2027]52  objects/Scene.cc
53  objects/worldentities/WorldEntity.cc
54  objects/worldentities/PositionableEntity.cc
55  objects/worldentities/MovableEntity.cc
56  objects/worldentities/ControllableEntity.cc
57  objects/worldentities/Model.cc
[2044]58  objects/worldentities/Billboard.cc
59  objects/worldentities/BlinkingBillboard.cc
60  objects/worldentities/Light.cc
[2027]61  objects/worldentities/Camera.cc
[2042]62  objects/worldentities/CameraPosition.cc
[2019]63  objects/worldentities/SpawnPoint.cc
[2065]64  objects/worldentities/ParticleEmitter.cc
65  objects/worldentities/ParticleSpawner.cc
[2027]66#  objects/worldentities/Backlight.cc
[2019]67
[2027]68  objects/worldentities/triggers/Trigger.cc
69  objects/worldentities/triggers/DistanceTrigger.cc
[2071]70  objects/worldentities/triggers/EventTrigger.cc
[2027]71
[1993]72  objects/worldentities/pawns/Spectator.cc
[2024]73  objects/worldentities/pawns/Pawn.cc
74  objects/worldentities/pawns/SpaceShip.cc
[1993]75
76  objects/controllers/Controller.cc
77  objects/controllers/HumanController.cc
78
[1940]79  objects/infos/Info.cc
[2012]80  objects/infos/Level.cc
[1940]81  objects/infos/PlayerInfo.cc
[2019]82  objects/infos/HumanPlayer.cc
[1940]83
84  objects/gametypes/Gametype.cc
85
[1844]86  tolua/tolua_bind.cc
[1505]87)
88
[1810]89GET_TARGET_PROPERTY(TOLUA_EXE tolua_orxonox LOCATION)
[1505]90ADD_CUSTOM_COMMAND(
[1843]91  OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.cc ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.h
[1755]92  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]93  DEPENDS
94    tolua_orxonox
95    tolua/tolua.pkg
96    gui/GUIManager.h
[1505]97  WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/bin/lib
98)
[1959]99
100
[1505]101ADD_EXECUTABLE( orxonox ${ORXONOX_SRC_FILES} )
102
103IF(NETWORKTRAFFIC_TESTING_ENABLED)
104
105  SET( ORXONOXS_SRC_FILES
106    GraphicsEngine.cc
107    objects/Camera.cc
108    objects/CameraHandler.cc
109  )
110
111  ADD_LIBRARY(orxonoxs SHARED ${ORXONOX_SRC_FILES})
112ENDIF(NETWORKTRAFFIC_TESTING_ENABLED)
113
114TARGET_LINK_LIBRARIES( orxonox
115  ${OGRE_LIBRARIES}
[1755]116  ${CEGUI_LIBRARIES}
[1810]117  lua_orxonox
118  ceguilua_orxonox
119  tinyxml_orxonox
120  tolualib_orxonox
[1505]121  util
122  core
123  audio
124  network
125)
126
Note: See TracBrowser for help on using the repository browser.