Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/orxonox/CMakeLists.txt @ 1070

Last change on this file since 1070 was 1070, checked in by rgrieder, 16 years ago
  • moved "—no-undefined" linker flag to root CMLs
  • removed library directories for our own libs from root CMLs (might not work)
  • removed warning in Hud.cc (float instead of integer)
File size: 918 bytes
Line 
1SET( ORXONOX_SRC_FILES
2  GraphicsEngine.cc
3  Main.cc
4  Orxonox.cc
5#  SpaceshipSteering.cc
6  hud/HUD.cc
7  particle/ParticleInterface.cc
8  tools/BillboardSet.cc
9  tools/Light.cc
10  tools/Mesh.cc
11  tools/Timer.cc
12  objects/Ambient.cc
13  objects/Camera.cc
14  objects/Explosion.cc
15#  objects/Fighter.cc
16  objects/Model.cc
17  objects/NPC.cc
18  objects/Projectile.cc
19  objects/Skybox.cc
20  objects/SpaceShip.cc
21#  objects/SpaceshipSteeringObject.cc
22#  objects/test1.cc
23#  objects/test2.cc
24#  objects/test3.cc
25  objects/WorldEntity.cc
26#  objects/weapon/AmmunitionDump.cc
27#  objects/weapon/BarrelGun.cc
28#  objects/weapon/BaseWeapon.cc
29#  objects/weapon/Bullet.cc
30#  objects/weapon/BulletManager.cc
31#  objects/weapon/WeaponStation.cc
32)
33
34ADD_EXECUTABLE( orxonox ${ORXONOX_SRC_FILES} )
35
36TARGET_LINK_LIBRARIES( orxonox
37  ${OGRE_LIBRARIES}
38  ${Lua_LIBRARIES}
39  util
40  core
41  audio
42  network
43)
44
Note: See TracBrowser for help on using the repository browser.