Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 289 was 289, checked in by rgrieder, 16 years ago
  • updated the source files and CMLs
  • adjusted resources.cfg for the new hud overlay
File size: 693 bytes
Line 
1PROJECT(Orxonox)
2
3# create a few variables to simplify life
4SET( ORXONOX_SRC
5        inertial_node.cc
6        main.cc
7        ogre_control.cc
8        orxonox.cc
9        orxonox_scene.cc
10        orxonox_ship.cc
11        run_manager.cc
12)
13
14#Creates an executable
15ADD_EXECUTABLE(../bin/main ${ORXONOX_SRC} )
16
17#add weapon source dir
18ADD_SUBDIRECTORY(weapon)
19ADD_SUBDIRECTORY(class_hierarchy)
20ADD_SUBDIRECTORY(hud)
21
22#Links the executable against OGRE and OIS
23TARGET_LINK_LIBRARIES(../bin/main
24        WEAPON
25        CLASS_HIERARCHY
26        HUD
27        ${OGRE_LIBRARIES} ${OIS_LIBRARIES} ${CEGUI_LIBRARIES} ${CEGUI_OGRE_LIBRARIES}
28)
29
30#TARGET_LINK_LIBRARIES(../bin/main ${OGRE_LIBRARIES} ${OIS_LIBRARIES} ${CEGUI_LIBRARIES} ${CEGUI_OGRE_LIBRARIES})
Note: See TracBrowser for help on using the repository browser.