Last change
on this file since 497 was
482,
checked in by nicolape, 17 years ago
|
Added example implementation of world entity
|
File size:
647 bytes
|
Line | |
---|
1 | PROJECT(Orxonox) |
---|
2 | |
---|
3 | ADD_SUBDIRECTORY(core) |
---|
4 | ADD_SUBDIRECTORY(hud) |
---|
5 | ADD_SUBDIRECTORY(objects) |
---|
6 | ADD_SUBDIRECTORY(weapon) |
---|
7 | |
---|
8 | |
---|
9 | SET( ORXONOX_SRC_FILES |
---|
10 | orxonox.cc |
---|
11 | orxonox_scene.cc |
---|
12 | orxonox_ship.cc |
---|
13 | run_manager.cc |
---|
14 | spaceship_steering.cc |
---|
15 | inertial_node.cc |
---|
16 | main.cc |
---|
17 | graphicsEngine.cc |
---|
18 | ) |
---|
19 | |
---|
20 | ADD_LIBRARY(orxonox SHARED ${ORXONOX_SRC_FILES}) |
---|
21 | |
---|
22 | ADD_EXECUTABLE(../../bin/main ${ORXONOX_SRC_FILES}) |
---|
23 | |
---|
24 | SET_TARGET_PROPERTIES(../../bin/main PROPERTIES LINK_FLAGS "--no-undefined" ) |
---|
25 | |
---|
26 | TARGET_LINK_LIBRARIES( ../../bin/main |
---|
27 | ${OGRE_LIBRARIES} |
---|
28 | ${OIS_LIBRARIES} |
---|
29 | loader |
---|
30 | audio |
---|
31 | network |
---|
32 | core |
---|
33 | hud |
---|
34 | objects |
---|
35 | weapon |
---|
36 | xml |
---|
37 | ) |
---|
38 | |
---|
Note: See
TracBrowser
for help on using the repository browser.