Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 437 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
RevLine 
[341]1PROJECT(Orxonox)
2
3SET( NETWORK_SRC_FILES
[376]4  Client.cc
5  ClientConnection.cc
[431]6  ClientInformation.cc
[376]7  ConnectionManager.cc
[431]8  GameStateManager.cc
[415]9  GameStateClient.cc
[376]10  PacketBuffer.cc
11  PacketDecoder.cc
12  PacketGenerator.cc
13  Server.cc
14  Synchronisable.cc
[341]15)
16
[372]17ADD_LIBRARY(network SHARED ${NETWORK_SRC_FILES})
[376]18TARGET_LINK_LIBRARIES(network ${ENet_LIBRARY} ${Boost_thread_LIBRARIES})
Note: See TracBrowser for help on using the repository browser.