|
Last change
on this file since 268 was
267,
checked in by rgrieder, 18 years ago
|
- updated to current revision from Visual studio directory
- hopefully working libraries with cmake
|
|
File size:
772 bytes
|
| Line | |
|---|
| 1 | PROJECT(Orxonox) |
|---|
| 2 | |
|---|
| 3 | # create a few variables to simplify life |
|---|
| 4 | SET( ORXONOX_SRC |
|---|
| 5 | camera_manager.cc |
|---|
| 6 | inertial_node.cc |
|---|
| 7 | main.cc |
|---|
| 8 | ogre_control.cc |
|---|
| 9 | orxonox.cc |
|---|
| 10 | orxonox_scene.cc |
|---|
| 11 | orxonox_ship.cc |
|---|
| 12 | run_manager.cc |
|---|
| 13 | |
|---|
| 14 | camera_manager.h |
|---|
| 15 | inertial_node.h |
|---|
| 16 | ogre_control.h |
|---|
| 17 | orxonox.h |
|---|
| 18 | orxonox_prerequisites.h |
|---|
| 19 | orxonox_scene.h |
|---|
| 20 | orxonox_ship.h |
|---|
| 21 | run_manager.h |
|---|
| 22 | ) |
|---|
| 23 | |
|---|
| 24 | #Creates an executable |
|---|
| 25 | ADD_EXECUTABLE(../bin/main ${ORXONOX_SRC} ) |
|---|
| 26 | |
|---|
| 27 | #add weapon source dir |
|---|
| 28 | #ADD_SUBDIRECTORY(weapon) |
|---|
| 29 | |
|---|
| 30 | #Links the executable against OGRE and OIS |
|---|
| 31 | TARGET_LINK_LIBRARIES(../bin/main WEAPON ${OGRE_LIBRARIES} ${OIS_LIBRARIES} ${CEGUI_LIBRARIES} ${CEGUI_OGRE_LIBRARIES}) |
|---|
| 32 | #TARGET_LINK_LIBRARIES(../bin/main ${OGRE_LIBRARIES} ${OIS_LIBRARIES} ${CEGUI_LIBRARIES} ${CEGUI_OGRE_LIBRARIES}) |
|---|
Note: See
TracBrowser
for help on using the repository browser.