Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/physics/src/orxonox/CMakeLists.txt @ 1988

Last change on this file since 1988 was 1988, checked in by rgrieder, 16 years ago

Tardis compiles both Bullet and OgreBullet completely. However there are a lot of warnings and I don't feel like correcting them all..

  • Property svn:eol-style set to native
File size: 2.6 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
44  objects/Ambient.cc
[1608]45  objects/Backlight.cc
[1505]46  objects/Camera.cc
47  objects/CameraHandler.cc
48  objects/Model.cc
49  objects/NPC.cc
[1552]50  objects/ParticleSpawner.cc
[1924]51  objects/PhysicsTest.cc
[1817]52  objects/Radar.cc
53  objects/RadarListener.cc
54  objects/RadarViewable.cc
[1505]55  objects/Skybox.cc
56  objects/SpaceShip.cc
57  objects/SpaceShipAI.cc
[1535]58  objects/Tickable.cc
[1505]59  objects/WorldEntity.cc
60
[1552]61  objects/Projectile.cc
62  objects/BillboardProjectile.cc
63  objects/RotatingProjectile.cc
64  objects/ParticleProjectile.cc
[1844]65
66  tolua/tolua_bind.cc
[1505]67)
68
[1810]69GET_TARGET_PROPERTY(TOLUA_EXE tolua_orxonox LOCATION)
[1505]70ADD_CUSTOM_COMMAND(
[1843]71  OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.cc ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.h
[1755]72  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]73  DEPENDS
74    tolua_orxonox
75    tolua/tolua.pkg
76    gui/GUIManager.h
[1505]77  WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/bin/lib
78)
79       
80ADD_EXECUTABLE( orxonox ${ORXONOX_SRC_FILES} )
81
82IF(NETWORKTRAFFIC_TESTING_ENABLED)
83
84  SET( ORXONOXS_SRC_FILES
85    GraphicsEngine.cc
86    objects/Ambient.cc
87    objects/Camera.cc
88    objects/CameraHandler.cc
89    objects/Explosion.cc
90    objects/Model.cc
91    objects/NPC.cc
92    objects/Projectile.cc
93    objects/Skybox.cc
94    objects/SpaceShip.cc
95    objects/WorldEntity.cc
96  )
97
98  ADD_LIBRARY(orxonoxs SHARED ${ORXONOX_SRC_FILES})
99ENDIF(NETWORKTRAFFIC_TESTING_ENABLED)
100
101TARGET_LINK_LIBRARIES( orxonox
102  ${OGRE_LIBRARIES}
[1755]103  ${CEGUI_LIBRARIES}
[1810]104  lua_orxonox
105  ceguilua_orxonox
106  tinyxml_orxonox
107  tolualib_orxonox
[1925]108  ogreode_orxonox
[1988]109  LibLinearMath
110  LibBulletCollision
111  LibBulletDynamics
112  LibBulletSoftBody
113  ogrebullet_collisions_orxonox
114  ogrebullet_dynamics_orxonox
[1505]115  util
116  core
117  audio
118  network
119)
120
Note: See TracBrowser for help on using the repository browser.