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
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  WANDiscoverable.cc
35  WANDiscovery.cc
36  MasterServerComm.cc
37  NetworkFunction.cc
38  Host.cc
39  Server.cc
40  MasterServer.cc
41  PeerList.cc
42  ServerList.cc
43  ServerConnection.cc
44  TrafficControl.cc
45)
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
54  FunctionCall.h
55  FunctionCallManager.h
56  #GamestateClient.h
57  GamestateHandler.h
58  GamestateManager.h
59  Host.h
60  LANDiscoverable.h
61  LANDiscovery.h
62  WANDiscoverable.h
63  WANDiscovery.h
64  MasterServerComm.h
65  NetworkFunction.h
66  NetworkPrecompiledHeaders.h
67  NetworkPrereqs.h
68  Server.h
69  MasterServer.h
70  PeerList.h
71  ServerList.h
72  ServerConnection.h
73  TrafficControl.h
74)
75
76ADD_SUBDIRECTORY(packet)
77ADD_SUBDIRECTORY(synchronisable)
78
79ORXONOX_ADD_LIBRARY(network
80  TOLUA_FILES
81    Client.h
82    LANDiscovery.h
83    WANDiscovery.h
84  PCH_FILE
85    NetworkPrecompiledHeaders.h
86  LINK_LIBRARIES
87    ${ZLIB_LIBRARY}
88    #${ENET_LIBRARY}
89    enet_orxonox
90    ${Boost_THREAD_LIBRARY}
91    util
92    core
93  SOURCE_FILES
94    ${NETWORK_SRC_FILES} ${NETWORK_HDR_FILES}
95)
Note: See TracBrowser for help on using the repository browser.