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
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
20ADD_EXECUTABLE(../../bin/main ${ORXONOX_SRC_FILES})
21
[358]22SET_TARGET_PROPERTIES(../../bin/main PROPERTIES LINK_FLAGS "--no-undefined" )
[341]23
[462]24TARGET_LINK_LIBRARIES( ../../bin/main
[376]25  ${OGRE_LIBRARIES}
26  ${OIS_LIBRARIES}
27  loader
[389]28  audio
[376]29  network
30  core
31  hud
32  objects
33  weapon
[341]34)
[389]35
Note: See TracBrowser for help on using the repository browser.