Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/network/CMakeLists.txt @ 376

Last change on this file since 376 was 376, checked in by rgrieder, 16 years ago
  • 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 size: 351 bytes
Line 
1PROJECT(Orxonox)
2
3SET( NETWORK_SRC_FILES
4  Client.cc
5  ClientConnection.cc
6  ConnectionManager.cc
7  GameStateManager.cc
8  PacketBuffer.cc
9  PacketDecoder.cc
10  PacketGenerator.cc
11  Server.cc
12  Synchronisable.cc
13)
14
15ADD_LIBRARY(network SHARED ${NETWORK_SRC_FILES})
16TARGET_LINK_LIBRARIES(network ${ENet_LIBRARY} ${Boost_thread_LIBRARIES})
Note: See TracBrowser for help on using the repository browser.