Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/libraries/network/CMakeLists.txt @ 7801

Last change on this file since 7801 was 7801, checked in by dafrick, 13 years ago

Merging presentation2 branch back to trunk.

  • Property svn:eol-style set to native
File size: 2.3 KB
RevLine 
[2710]1 #
2 #             ORXONOX - the hottest 3D action shooter ever to exist
3 #                             > www.orxonox.net <
4 #
5 #        This program is free software; you can redistribute it and/or
6 #         modify it under the terms of the GNU General Public License
7 #        as published by the Free Software Foundation; either version 2
8 #            of the License, or (at your option) any later version.
9 #
10 #       This program is distributed in the hope that it will be useful,
11 #        but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #                 GNU General Public License for more details.
14 #
15 #   You should have received a copy of the GNU General Public License along
16 #      with this program; if not, write to the Free Software Foundation,
17 #     Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18 #
19
20SET_SOURCE_FILES(NETWORK_SRC_FILES
[2087]21  ChatListener.cc
[1505]22  Client.cc
23  ClientConnection.cc
24  ClientInformation.cc
[2087]25  ClientConnectionListener.cc
[3214]26  Connection.cc
[7490]27  FunctionCall.cc
[3084]28  FunctionCallManager.cc
[1735]29  GamestateManager.cc
[7801]30  #GamestateClient.cc
[1735]31  GamestateHandler.cc
[7163]32  LANDiscoverable.cc
33  LANDiscovery.cc
[7801]34  WANDiscoverable.cc
35  WANDiscovery.cc
36  MasterServerComm.cc
[3084]37  NetworkFunction.cc
38  Host.cc
[1505]39  Server.cc
[7801]40  MasterServer.cc
41  PeerList.cc
42  ServerList.cc
[3214]43  ServerConnection.cc
[2662]44  TrafficControl.cc
[1505]45)
[5695]46
47SET_SOURCE_FILES(NETWORK_HDR_FILES
48  ChatListener.h
49  Client.h
50  ClientConnection.h
51  ClientConnectionListener.h
52  ClientInformation.h
53  Connection.h
[7490]54  FunctionCall.h
[5695]55  FunctionCallManager.h
[7801]56  #GamestateClient.h
[5695]57  GamestateHandler.h
58  GamestateManager.h
59  Host.h
[7163]60  LANDiscoverable.h
61  LANDiscovery.h
[7801]62  WANDiscoverable.h
63  WANDiscovery.h
64  MasterServerComm.h
[5695]65  NetworkFunction.h
66  NetworkPrecompiledHeaders.h
67  NetworkPrereqs.h
68  Server.h
[7801]69  MasterServer.h
70  PeerList.h
71  ServerList.h
[5695]72  ServerConnection.h
73  TrafficControl.h
74)
75
[2710]76ADD_SUBDIRECTORY(packet)
77ADD_SUBDIRECTORY(synchronisable)
[1505]78
[3196]79ORXONOX_ADD_LIBRARY(network
[7163]80  TOLUA_FILES
81    Client.h
82    LANDiscovery.h
[7801]83    WANDiscovery.h
[3196]84  PCH_FILE
85    NetworkPrecompiledHeaders.h
86  LINK_LIBRARIES
87    ${ZLIB_LIBRARY}
[7459]88    #${ENET_LIBRARY}
89    enet_orxonox
[3196]90    ${Boost_THREAD_LIBRARY}
91    util
92    core
93  SOURCE_FILES
[5695]94    ${NETWORK_SRC_FILES} ${NETWORK_HDR_FILES}
[1505]95)
Note: See TracBrowser for help on using the repository browser.