source:
code/branches/FICN/src/orxonox/CMakeLists.txt
@
433
Last change on this file since 433 was 389, checked in by nicolasc, 17 years ago | |
---|---|
File size: 557 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 |
[341] | 16 | ) |
17 | ||
18 | ADD_EXECUTABLE(../../bin/main ${ORXONOX_SRC_FILES}) | |
19 | ||
[358] | 20 | SET_TARGET_PROPERTIES(../../bin/main PROPERTIES LINK_FLAGS "--no-undefined" ) |
[341] | 21 | |
[373] | 22 | TARGET_LINK_LIBRARIES( ../../bin/main |
[376] | 23 | ${OGRE_LIBRARIES} |
24 | ${OIS_LIBRARIES} | |
25 | loader | |
[389] | 26 | audio |
[376] | 27 | network |
28 | core | |
29 | hud | |
30 | objects | |
31 | weapon | |
[341] | 32 | ) |
[389] | 33 |
Note: See TracBrowser
for help on using the repository browser.