|
Last change
on this file since 476 was
462,
checked in by bknecht, 18 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 | |
|---|
| 1 | PROJECT(Orxonox) |
|---|
| 2 | |
|---|
| 3 | ADD_SUBDIRECTORY(core) |
|---|
| 4 | ADD_SUBDIRECTORY(hud) |
|---|
| 5 | ADD_SUBDIRECTORY(objects) |
|---|
| 6 | ADD_SUBDIRECTORY(weapon) |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | SET( 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 | |
|---|
| 20 | ADD_EXECUTABLE(../../bin/main ${ORXONOX_SRC_FILES}) |
|---|
| 21 | |
|---|
| 22 | SET_TARGET_PROPERTIES(../../bin/main PROPERTIES LINK_FLAGS "--no-undefined" ) |
|---|
| 23 | |
|---|
| 24 | TARGET_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.