Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 567 was 565, checked in by scheusso, 17 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
RevLine 
[341]1PROJECT(Orxonox)
2
3SET( OBJECTS_SRC_FILES
[376]4  BaseObject.cc
[496]5  WorldEntity.cc
[376]6  test1.cc
7  test2.cc
8  test3.cc
[507]9  Ambient.cc
10  Skybox.cc
[515]11  SceneNode.cc
[565]12  BaseEntity.cc
[515]13  Entity.cc
14  Camera.cc
15  SpaceshipSteeringObject.cc
[555]16  Model.cc
[341]17)
18
[358]19ADD_LIBRARY(objects SHARED ${OBJECTS_SRC_FILES})
[480]20
21TARGET_LINK_LIBRARIES( objects
22  xml
[482]23  orxonox
[565]24)
Note: See TracBrowser for help on using the repository browser.