Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN_test/src/orxonox/objects/CMakeLists.txt @ 754

Last change on this file since 754 was 754, checked in by rgrieder, 16 years ago
  • some unstable changes to CMLs
File size: 472 bytes
Line 
1PROJECT(Orxonox)
2
3ADD_SUBDIRECTORY(weapon)
4
5SET( OBJECTS_SRC_FILES
6  Ambient.cc
7  Camera.cc
8  Explosion.cc
9  Fighter.cc
10  Model.cc
11  NPC.cc
12  Projectile.cc
13  Skybox.cc
14  SpaceShip.cc
15#  SpaceshipSteeringObject.cc
16  WorldEntity.cc
17  test1.cc
18  test2.cc
19  test3.cc
20  ${WEAPON_SRC_FILES}
21)
22
23IF (NOT WIN32)
24  ADD_LIBRARY(objects SHARED ${OBJECTS_SRC_FILES})
25
26  TARGET_LINK_LIBRARIES( objects
27    util
28    orxonox
29    tools
30  )
31ENDIF (NOT WIN32)
Note: See TracBrowser for help on using the repository browser.