Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/masterserver/src/libraries/network/CMakeLists.txt @ 7729

Last change on this file since 7729 was 7729, checked in by smerkli, 13 years ago

moved some files.

  • Property svn:eol-style set to native
File size: 2.2 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
30  GamestateClient.cc
31  GamestateHandler.cc
[7163]32  LANDiscoverable.cc
33  LANDiscovery.cc
[7631]34  WANDiscovery.cc
35  MasterServerComm.cc
[3084]36  NetworkFunction.cc
37  Host.cc
[1505]38  Server.cc
[3214]39  ServerConnection.cc
[2662]40  TrafficControl.cc
[1505]41)
[5695]42
43SET_SOURCE_FILES(NETWORK_HDR_FILES
44  ChatListener.h
45  Client.h
46  ClientConnection.h
47  ClientConnectionListener.h
48  ClientInformation.h
49  Connection.h
[7490]50  FunctionCall.h
[5695]51  FunctionCallManager.h
52  GamestateClient.h
53  GamestateHandler.h
54  GamestateManager.h
55  Host.h
[7163]56  LANDiscoverable.h
57  LANDiscovery.h
[7631]58  WANDiscovery.h
59  MasterServerComm.h
[5695]60  NetworkFunction.h
61  NetworkPrecompiledHeaders.h
62  NetworkPrereqs.h
63  Server.h
64  ServerConnection.h
65  TrafficControl.h
66)
67
[2710]68ADD_SUBDIRECTORY(packet)
69ADD_SUBDIRECTORY(synchronisable)
[7729]70ADD_SUBDIRECTORY(masterserver)
[1505]71
[3196]72ORXONOX_ADD_LIBRARY(network
[7163]73  TOLUA_FILES
74    Client.h
75    LANDiscovery.h
[7665]76    WANDiscovery.h
[3196]77  PCH_FILE
78    NetworkPrecompiledHeaders.h
79  LINK_LIBRARIES
80    ${ZLIB_LIBRARY}
[7459]81    #${ENET_LIBRARY}
82    enet_orxonox
[3196]83    ${Boost_THREAD_LIBRARY}
84    util
85    core
86  SOURCE_FILES
[5695]87    ${NETWORK_SRC_FILES} ${NETWORK_HDR_FILES}
[1505]88)
Note: See TracBrowser for help on using the repository browser.