Last change
on this file since 172 was
171,
checked in by rgrieder, 17 years ago
|
- added all my own files in the src directory
- edited CMakeLists.txt in the src folder to match my files
|
File size:
722 bytes
|
Rev | Line | |
---|
[171] | 1 | PROJECT(Orxonox) |
---|
| 2 | |
---|
| 3 | # create a few variables to simplify life |
---|
| 4 | SET(SRC_FILES |
---|
| 5 | orxonox.cc |
---|
| 6 | main.cc |
---|
| 7 | ammunition_dump.cc |
---|
| 8 | barrel_gun..c |
---|
| 9 | bullet.cc |
---|
| 10 | camera_manager.cc |
---|
| 11 | ogre_control.cc |
---|
| 12 | orxonox_scene.cc |
---|
| 13 | orxonox_ship.cc |
---|
| 14 | run_manager.cc |
---|
| 15 | weapon_manager.cc) |
---|
| 16 | SET(INC_FILES |
---|
| 17 | ammunition_dump.h |
---|
| 18 | barrel_gun.h |
---|
| 19 | bullet.h |
---|
| 20 | camera_manager.h |
---|
| 21 | orgre_control.h |
---|
| 22 | orxonox.h |
---|
| 23 | orxonox_prerequisites.h |
---|
| 24 | orxonox_scene.h |
---|
| 25 | orxonox_ship.h |
---|
| 26 | run_manager.h |
---|
| 27 | weapon.h |
---|
| 28 | weapon_manager.h) |
---|
| 29 | |
---|
| 30 | #Creates an executable |
---|
| 31 | ADD_EXECUTABLE(../bin/main ${SRC_FILES} ${INC_FILES}) |
---|
| 32 | #Links the executable against OGRE and OIS |
---|
| 33 | TARGET_LINK_LIBRARIES(../bin/main ${OGRE_LIBRARIES} ${OIS_LIBRARIES} ${CEGUI_LIBRARIES} ${CEGUI_OGRE_LIBRARIES}) |
---|
| 34 | |
---|
Note: See
TracBrowser
for help on using the repository browser.