Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 565 was 565, checked in by scheusso, 16 years ago

added class BaseEntity:

  • !!! please inherit from this class in future (instead of Entity/WorldEntity/BaseObject):
  • this class is able to be synchronised over the network (or at least created so far)
File size: 353 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)
18
19ADD_LIBRARY(objects SHARED ${OBJECTS_SRC_FILES})
20
21TARGET_LINK_LIBRARIES( objects
22  xml
23  orxonox
24)
Note: See TracBrowser for help on using the repository browser.