Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 962 was 946, checked in by bknecht, 17 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
RevLine 
[752]1SET( ORXONOX_SRC_FILES
[768]2  GraphicsEngine.cc
[934]3  InputEventListener.cc
[919]4  InputHandler.cc
[768]5  Main.cc
[752]6  Orxonox.cc
[919]7#  SpaceshipSteering.cc
[768]8  hud/HUD.cc
9  particle/ParticleInterface.cc
10  tools/BillboardSet.cc
11  tools/Light.cc
12  tools/Mesh.cc
[871]13  tools/Timer.cc
[768]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
[871]23#  objects/SpaceshipSteeringObject.cc
24#  objects/test1.cc
25#  objects/test2.cc
26#  objects/test3.cc
[768]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
[946]33  objects/weapon/WeaponStation.cc
34  script/Script.cc
[752]35)
36
[774]37ADD_EXECUTABLE( orxonox ${ORXONOX_SRC_FILES} )
[752]38
[774]39SET_TARGET_PROPERTIES( orxonox PROPERTIES LINK_FLAGS "--no-undefined" )
[752]40
[774]41TARGET_LINK_LIBRARIES( orxonox
[752]42  ${OGRE_LIBRARIES}
[946]43  ${OIS_LIBRARIES}
44  ${Lua_LIBRARIES}
[768]45  util
46  core
[752]47  audio
48  network
[871]49#  loader
[752]50)
51
Note: See TracBrowser for help on using the repository browser.