Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/network/src/orxonox/CMakeLists.txt @ 934

Last change on this file since 934 was 934, checked in by rgrieder, 16 years ago
  • added debug output to the InputHandler
  • fixed singleton issues
  • cleaned up Main.cc (replaced WinMain by main)
File size: 1.0 KB
Line 
1SET( ORXONOX_SRC_FILES
2  GraphicsEngine.cc
3  InputEventListener.cc
4  InputHandler.cc
5  Main.cc
6  Orxonox.cc
7#  SpaceshipSteering.cc
8  hud/HUD.cc
9  particle/ParticleInterface.cc
10  tools/BillboardSet.cc
11  tools/Light.cc
12  tools/Mesh.cc
13  tools/Timer.cc
14  objects/Ambient.cc
15  objects/Camera.cc
16  objects/Explosion.cc
17  objects/Fighter.cc
18  objects/Model.cc
19  objects/NPC.cc
20  objects/Projectile.cc
21  objects/Skybox.cc
22  objects/SpaceShip.cc
23#  objects/SpaceshipSteeringObject.cc
24#  objects/test1.cc
25#  objects/test2.cc
26#  objects/test3.cc
27  objects/WorldEntity.cc
28  objects/weapon/AmmunitionDump.cc
29  objects/weapon/BarrelGun.cc
30  objects/weapon/BaseWeapon.cc
31  objects/weapon/Bullet.cc
32  objects/weapon/BulletManager.cc
33  objects/weapon/WeaponStation.cc
34)
35
36ADD_EXECUTABLE( orxonox ${ORXONOX_SRC_FILES} )
37
38SET_TARGET_PROPERTIES( orxonox PROPERTIES LINK_FLAGS "--no-undefined" )
39
40TARGET_LINK_LIBRARIES( orxonox
41  ${OGRE_LIBRARIES}
42  ${OIS_LIBRARIES}
43  util
44  core
45  audio
46  network
47#  loader
48)
49
Note: See TracBrowser for help on using the repository browser.