Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core2/src/orxonox/CMakeLists.txt @ 873

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

simplified core2 branch

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