source:
code/branches/FICN/src/orxonox/CMakeLists.txt
@
540
Last change on this file since 540 was 535, checked in by nicolasc, 17 years ago | |
---|---|
File size: 687 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) | |
[535] | 7 | ADD_SUBDIRECTORY(particle) |
[376] | 8 | |
9 | ||
[341] | 10 | SET( ORXONOX_SRC_FILES |
[376] | 11 | orxonox.cc |
12 | orxonox_scene.cc | |
13 | orxonox_ship.cc | |
14 | run_manager.cc | |
15 | spaceship_steering.cc | |
[364] | 16 | inertial_node.cc |
[462] | 17 | main.cc |
18 | graphicsEngine.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 |
[535] | 38 | particle |
[341] | 39 | ) |
[389] | 40 |
Note: See TracBrowser
for help on using the repository browser.