Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 462 was 462, checked in by bknecht, 16 years ago

got my work to compile (it's all hacked together and I dunno if it runs)

  • orxonox.h we got now a real .h file for our main class
  • orxonox.cc this is the all hacked class. We/I have to strip that clean
  • orxonoxOld.cc "You did something wrong, the old implementation was SOO much better"
  • graphicsEngine we should have a wrapper around ogre so we have a real graphics module
  • main.cc created a main again doing all the platform depending stuff in there.. (hope this works)

think that's all…

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