Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/orxonox/objects/CMakeLists.txt @ 638

Last change on this file since 638 was 638, checked in by rgrieder, 16 years ago
  • added weapon system (probably not working yet)
File size: 618 bytes
Line 
1PROJECT(Orxonox)
2
3SET( OBJECTS_SRC_FILES
4  BaseObject.cc
5  WorldEntity.cc
6  test1.cc
7  test2.cc
8  test3.cc
9  Ambient.cc
10  Skybox.cc
11  SceneNode.cc
12  BaseEntity.cc
13  Entity.cc
14  Camera.cc
15#  SpaceshipSteeringObject.cc
16  Model.cc
17  Mesh.cc
18  SpaceShip.cc
19  NPC.cc
20  BillboardSet.cc
21  Light.cc
22  weapon_system/ammunition_dump.cc
23  weapon_system/barrel_gun.cc
24  weapon_system/base_weapon.cc
25  weapon_system/bullet.cc
26  weapon_system/bullet_manager.cc
27  weapon_system/weapon_station.cc
28)
29
30ADD_LIBRARY(objects SHARED ${OBJECTS_SRC_FILES})
31
32TARGET_LINK_LIBRARIES( objects
33  xml
34  orxonox
35)
Note: See TracBrowser for help on using the repository browser.