Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/orxonox/CMakeLists.txt @ 357

Last change on this file since 357 was 357, checked in by rgrieder, 16 years ago
  • added the -no—undefined flag to the linker command (may not work, but trying to) on the suggestion of Bensch
File size: 467 bytes
Line 
1PROJECT(Orxonox)
2
3SET( ORXONOX_SRC_FILES
4        orxonox.cc
5        spaceship_steering.cc
6)
7
8ADD_EXECUTABLE(../../bin/main ${ORXONOX_SRC_FILES})
9
10SET_TARGET_PROPERTIES(../../bin/main LINK_FLAGS "--no-undefined" )
11
12
13ADD_SUBDIRECTORY(core)
14ADD_SUBDIRECTORY(hud)
15ADD_SUBDIRECTORY(objects)
16ADD_SUBDIRECTORY(weapon)
17
18
19TARGET_LINK_LIBRARIES( ../../bin/main
20        ${OGRE_LIBRARIES}
21        ${OIS_LIBRARIES}
22        ${ENet_LIBRARY}
23        loader
24        network
25        core
26        hud
27        objects
28        weapon
29)
Note: See TracBrowser for help on using the repository browser.