Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 359 was 359, checked in by rgrieder, 16 years ago
  • added inertial_node.cc, orxonox_ship.cc, orxonox_scene.cc and run_manager.cc to the CML in orxonox
  • —no-undefined works now: several linker errors with enet and boost
  • branch is not working right now
File size: 532 bytes
Line 
1PROJECT(Orxonox)
2
3SET( ORXONOX_SRC_FILES
4        orxonox.cc
5        orxonox_scene.cc
6        orxonox_ship.cc
7        run_manager.cc
8        spaceship_steering.cc
9)
10
11ADD_EXECUTABLE(../../bin/main ${ORXONOX_SRC_FILES})
12
13SET_TARGET_PROPERTIES(../../bin/main PROPERTIES LINK_FLAGS "--no-undefined" )
14
15
16ADD_SUBDIRECTORY(core)
17ADD_SUBDIRECTORY(hud)
18ADD_SUBDIRECTORY(objects)
19ADD_SUBDIRECTORY(weapon)
20
21
22TARGET_LINK_LIBRARIES( ../../bin/main
23        ${OGRE_LIBRARIES}
24        ${OIS_LIBRARIES}
25        ${ENet_LIBRARY}
26        loader
27        network
28        core
29        hud
30        objects
31        weapon
32)
Note: See TracBrowser for help on using the repository browser.