source:
code/branches/FICN/src/orxonox/CMakeLists.txt
@
521
Last change on this file since 521 was 512, checked in by nicolasc, 17 years ago | |
---|---|
File size: 666 bytes |
Rev | Line | |
---|---|---|
[341] | 1 | PROJECT(Orxonox) |
2 | ||
[376] | 3 | ADD_SUBDIRECTORY(core) |
4 | ADD_SUBDIRECTORY(hud) | |
5 | ADD_SUBDIRECTORY(objects) | |
6 | ADD_SUBDIRECTORY(weapon) | |
7 | ||
8 | ||
[341] | 9 | SET( ORXONOX_SRC_FILES |
[376] | 10 | orxonox.cc |
11 | orxonox_scene.cc | |
12 | orxonox_ship.cc | |
13 | run_manager.cc | |
14 | spaceship_steering.cc | |
[364] | 15 | inertial_node.cc |
[462] | 16 | main.cc |
17 | graphicsEngine.cc | |
[512] | 18 | InputManager.cc |
[341] | 19 | ) |
20 | ||
[482] | 21 | ADD_LIBRARY(orxonox SHARED ${ORXONOX_SRC_FILES}) |
22 | ||
[341] | 23 | ADD_EXECUTABLE(../../bin/main ${ORXONOX_SRC_FILES}) |
24 | ||
[358] | 25 | SET_TARGET_PROPERTIES(../../bin/main PROPERTIES LINK_FLAGS "--no-undefined" ) |
[341] | 26 | |
[462] | 27 | TARGET_LINK_LIBRARIES( ../../bin/main |
[376] | 28 | ${OGRE_LIBRARIES} |
29 | ${OIS_LIBRARIES} | |
30 | loader | |
[389] | 31 | audio |
[376] | 32 | network |
33 | core | |
34 | hud | |
35 | objects | |
36 | weapon | |
[480] | 37 | xml |
[341] | 38 | ) |
[389] | 39 |
Note: See TracBrowser
for help on using the repository browser.