Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 497 was 482, checked in by nicolape, 17 years ago

Added example implementation of world entity

File size: 647 bytes
RevLine 
[341]1PROJECT(Orxonox)
2
[376]3ADD_SUBDIRECTORY(core)
4ADD_SUBDIRECTORY(hud)
5ADD_SUBDIRECTORY(objects)
6ADD_SUBDIRECTORY(weapon)
7
8
[341]9SET( ORXONOX_SRC_FILES
[376]10  orxonox.cc
11  orxonox_scene.cc
12  orxonox_ship.cc
13  run_manager.cc
14  spaceship_steering.cc
[364]15  inertial_node.cc
[462]16  main.cc
17  graphicsEngine.cc
[341]18)
19
[482]20ADD_LIBRARY(orxonox SHARED ${ORXONOX_SRC_FILES})
21
[341]22ADD_EXECUTABLE(../../bin/main ${ORXONOX_SRC_FILES})
23
[358]24SET_TARGET_PROPERTIES(../../bin/main PROPERTIES LINK_FLAGS "--no-undefined" )
[341]25
[462]26TARGET_LINK_LIBRARIES( ../../bin/main
[376]27  ${OGRE_LIBRARIES}
28  ${OIS_LIBRARIES}
29  loader
[389]30  audio
[376]31  network
32  core
33  hud
34  objects
35  weapon
[480]36  xml
[341]37)
[389]38
Note: See TracBrowser for help on using the repository browser.