Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core/src/orxonox/CMakeLists.txt @ 793

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

reduced the build-script of the core branch to the minimum (utils, core, orxonox + test objects)

File size: 996 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#  objects/Ambient.cc
12#  objects/Camera.cc
13#  objects/Explosion.cc
14#  objects/Fighter.cc
15  objects/Model.cc
16#  objects/NPC.cc
17#  objects/Projectile.cc
18#  objects/Skybox.cc
19#  objects/SpaceShip.cc
20#  objects/SpaceshipSteeringObject.cc
21  objects/test1.cc
22  objects/test2.cc
23  objects/test3.cc
24  objects/WorldEntity.cc
25#  objects/weapon/AmmunitionDump.cc
26#  objects/weapon/BarrelGun.cc
27#  objects/weapon/BaseWeapon.cc
28#  objects/weapon/Bullet.cc
29#  objects/weapon/BulletManager.cc
30#  objects/weapon/WeaponStation.cc
31)
32
33ADD_EXECUTABLE( orxonox ${ORXONOX_SRC_FILES} )
34
35SET_TARGET_PROPERTIES( orxonox PROPERTIES LINK_FLAGS "--no-undefined" )
36
37TARGET_LINK_LIBRARIES( orxonox
38  ${OGRE_LIBRARIES}
39  ${OIS_LIBRARIES}
40  util
41  core
42#  audio
43#  network
44#  loader
45)
46
Note: See TracBrowser for help on using the repository browser.