Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 431 was 431, checked in by scheusso, 16 years ago

Added class ClientInformation

  • implements a listelement for clientinformation (connection, id,address, ackGamestate)
  • should be used by gamestatemanager and connectionmanager (passed by the server class)
File size: 397 bytes
Line 
1PROJECT(Orxonox)
2
3SET( NETWORK_SRC_FILES
4  Client.cc
5  ClientConnection.cc
6  ClientInformation.cc
7  ConnectionManager.cc
8  GameStateManager.cc
9  GameStateClient.cc
10  PacketBuffer.cc
11  PacketDecoder.cc
12  PacketGenerator.cc
13  Server.cc
14  Synchronisable.cc
15)
16
17ADD_LIBRARY(network SHARED ${NETWORK_SRC_FILES})
18TARGET_LINK_LIBRARIES(network ${ENet_LIBRARY} ${Boost_thread_LIBRARIES})
Note: See TracBrowser for help on using the repository browser.