Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/script/src/orxonox/CMakeLists.txt @ 956

Last change on this file since 956 was 946, checked in by bknecht, 16 years ago

trying to link lua into the project and start with creating an interface to lua. still does not compile. stupid cmake

File size: 1.1 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  script/Script.cc
35)
36
37ADD_EXECUTABLE( orxonox ${ORXONOX_SRC_FILES} )
38
39SET_TARGET_PROPERTIES( orxonox PROPERTIES LINK_FLAGS "--no-undefined" )
40
41TARGET_LINK_LIBRARIES( orxonox
42  ${OGRE_LIBRARIES}
43  ${OIS_LIBRARIES}
44  ${Lua_LIBRARIES}
45  util
46  core
47  audio
48  network
49#  loader
50)
51
Note: See TracBrowser for help on using the repository browser.