Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

and another one.

  • Property svn:eol-style set to native
File size: 2.1 KB
Line 
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
21  ChatListener.cc
22  Client.cc
23  ClientConnection.cc
24  ClientInformation.cc
25  ClientConnectionListener.cc
26  Connection.cc
27  FunctionCall.cc
28  FunctionCallManager.cc
29  GamestateManager.cc
30  GamestateClient.cc
31  GamestateHandler.cc
32  LANDiscoverable.cc
33  LANDiscovery.cc
34  WANDiscovery.cc
35  MasterServerComm.cc
36  NetworkFunction.cc
37  Host.cc
38  Server.cc
39  ServerConnection.cc
40  TrafficControl.cc
41)
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
50  FunctionCall.h
51  FunctionCallManager.h
52  GamestateClient.h
53  GamestateHandler.h
54  GamestateManager.h
55  Host.h
56  LANDiscoverable.h
57  LANDiscovery.h
58  WANDiscovery.h
59  MasterServerComm.h
60  NetworkFunction.h
61  NetworkPrecompiledHeaders.h
62  NetworkPrereqs.h
63  Server.h
64  ServerConnection.h
65  TrafficControl.h
66)
67
68ADD_SUBDIRECTORY(packet)
69ADD_SUBDIRECTORY(synchronisable)
70
71ORXONOX_ADD_LIBRARY(network
72  TOLUA_FILES
73    Client.h
74    LANDiscovery.h
75    WANDiscovery.h
76  PCH_FILE
77    NetworkPrecompiledHeaders.h
78  LINK_LIBRARIES
79    ${ZLIB_LIBRARY}
80    #${ENET_LIBRARY}
81    enet_orxonox
82    ${Boost_THREAD_LIBRARY}
83    util
84    core
85  SOURCE_FILES
86    ${NETWORK_SRC_FILES} ${NETWORK_HDR_FILES}
87)
Note: See TracBrowser for help on using the repository browser.