Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 1052 was 1052, checked in by landauf, 16 years ago

merged core2 back to trunk
there might be some errors, wasn't able to test it yet due to some strange g++ and linker behaviour.

File size: 1004 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
36SET_TARGET_PROPERTIES( orxonox PROPERTIES LINK_FLAGS "--no-undefined" )
37
38TARGET_LINK_LIBRARIES( orxonox
39  ${OGRE_LIBRARIES}
40  ${Lua_LIBRARIES}
41  util
42  core
43  audio
44  network
45#  loader
46)
47
Note: See TracBrowser for help on using the repository browser.