Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 3, 2007, 10:14:04 PM (18 years ago)
Author:
rgrieder
Message:
  • removed the linker flags, since —no-undefined has no influence when building shared libraries (sorry Nico for you efforts) —no-allow-shlib-undefined should exist, but doesn't according to the man page, and it also doesn't work anyway.
  • removed linkage of ENet to the main executable as well (not necessary)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/orxonox/CMakeLists.txt

    r373 r376  
    11PROJECT(Orxonox)
    22
     3ADD_SUBDIRECTORY(core)
     4ADD_SUBDIRECTORY(hud)
     5ADD_SUBDIRECTORY(objects)
     6ADD_SUBDIRECTORY(weapon)
     7
     8
    39SET( ORXONOX_SRC_FILES
    4         orxonox.cc
    5         orxonox_scene.cc
    6         orxonox_ship.cc
    7         run_manager.cc
    8         spaceship_steering.cc
     10  orxonox.cc
     11  orxonox_scene.cc
     12  orxonox_ship.cc
     13  run_manager.cc
     14  spaceship_steering.cc
    915  inertial_node.cc
    1016)
     
    1420SET_TARGET_PROPERTIES(../../bin/main PROPERTIES LINK_FLAGS "--no-undefined" )
    1521
    16 
    17 ADD_SUBDIRECTORY(core)
    18 ADD_SUBDIRECTORY(hud)
    19 ADD_SUBDIRECTORY(objects)
    20 ADD_SUBDIRECTORY(weapon)
    21 
    22 
    2322TARGET_LINK_LIBRARIES( ../../bin/main
    24         ${OGRE_LIBRARIES}
    25         ${OIS_LIBRARIES}
    26         ${ENet_LIBRARY}
    27         loader
    28         network
    29         core
    30         hud
    31         objects
    32         weapon
     23  ${OGRE_LIBRARIES}
     24  ${OIS_LIBRARIES}
     25  loader
     26  network
     27  core
     28  hud
     29  objects
     30  weapon
    3331)
Note: See TracChangeset for help on using the changeset viewer.