Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 31, 2007, 2:13:43 PM (16 years ago)
Author:
rgrieder
Message:
  • complete restructured all the CMLs, tried to avoid circular dependencies
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN_test/src/network/CMakeLists.txt

    r732 r757  
    1 PROJECT(Orxonox)
    2 
    31SET( NETWORK_SRC_FILES
    42  Client.cc
     
    1715
    1816IF(WIN32)
    19   ADD_LIBRARY(network ${NETWORK_SRC_FILES})
     17  ADD_LIBRARY(${Orxonox_BINARY_DIR}/network ${NETWORK_SRC_FILES})
    2018ELSE(WIN32)
    21   ADD_LIBRARY(network SHARED ${NETWORK_SRC_FILES})
     19  ADD_LIBRARY(${Orxonox_BINARY_DIR}/network SHARED ${NETWORK_SRC_FILES})
    2220ENDIF(WIN32)
     21SET_TARGET_PROPERTIES( network PROPERTIES LINK_FLAGS "--no-undefined" )
    2322
    24 TARGET_LINK_LIBRARIES(network ${ZLIB_LIBRARY} ${ENet_LIBRARY} ${Boost_thread_LIBRARIES})
     23TARGET_LINK_LIBRARIES( network
     24  ${ZLIB_LIBRARY}
     25  ${ENet_LIBRARY}
     26  ${Boost_thread_LIBRARIES}
     27  core
     28)
    2529
    2630# build those parts only on request.
Note: See TracChangeset for help on using the changeset viewer.