Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

asdf

File size: 704 bytes
RevLine 
[171]1PROJECT(Orxonox)
2
3# create a few variables to simplify life
4SET(SRC_FILES
5        orxonox.cc
6        main.cc
7        camera_manager.cc
[191]8        inertial_node.cc
[171]9        ogre_control.cc
10        orxonox_scene.cc
11        orxonox_ship.cc
[191]12        run_manager.cc)
13
[171]14SET(INC_FILES
15        camera_manager.h
[191]16        inertial_node.h
[180]17        ogre_control.h
[171]18        orxonox.h
19        orxonox_prerequisites.h
20        orxonox_scene.h
21        orxonox_ship.h
[191]22        run_manager.h)
[171]23
24#Creates an executable
[207]25ADD_EXECUTABLE(../bin/main ${SRC_FILES, weapon/WPN_CC_FILES} ${INC_FILES, weapon/WPN_H_FILES})
[171]26#Links the executable against OGRE and OIS
27TARGET_LINK_LIBRARIES(../bin/main ${OGRE_LIBRARIES} ${OIS_LIBRARIES} ${CEGUI_LIBRARIES} ${CEGUI_OGRE_LIBRARIES})
28
[206]29#add weapon source dir
[190]30ADD_SUBDIRECTORY(weapon)
Note: See TracBrowser for help on using the repository browser.