Line | |
---|
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.cc |
---|
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 | ogre_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.