Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 998 was 996, checked in by bknecht, 18 years ago

tolua++ works now. A level will now be sent through lua, before getting loaded by tinyxml.

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