Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/main_reto/src/CMakeLists.txt @ 179

Last change on this file since 179 was 179, checked in by rgrieder, 16 years ago

bug fixed in CMakeList.txt

File size: 722 bytes
Line 
1PROJECT(Orxonox)
2
3# create a few variables to simplify life
4SET(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)
16SET(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
31ADD_EXECUTABLE(../bin/main ${SRC_FILES} ${INC_FILES})
32#Links the executable against OGRE and OIS
33TARGET_LINK_LIBRARIES(../bin/main ${OGRE_LIBRARIES} ${OIS_LIBRARIES} ${CEGUI_LIBRARIES} ${CEGUI_OGRE_LIBRARIES})
34
Note: See TracBrowser for help on using the repository browser.