Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 7490 was 7490, checked in by scheusso, 14 years ago

cleaning up function calls a bit in order to buffer calls for not (yet) existing objects

  • 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  NetworkFunction.cc
35  Host.cc
36  Server.cc
37  ServerConnection.cc
38  TrafficControl.cc
39)
40
41SET_SOURCE_FILES(NETWORK_HDR_FILES
42  ChatListener.h
43  Client.h
44  ClientConnection.h
45  ClientConnectionListener.h
46  ClientInformation.h
47  Connection.h
48  FunctionCall.h
49  FunctionCallManager.h
50  GamestateClient.h
51  GamestateHandler.h
52  GamestateManager.h
53  Host.h
54  LANDiscoverable.h
55  LANDiscovery.h
56  NetworkFunction.h
57  NetworkPrecompiledHeaders.h
58  NetworkPrereqs.h
59  Server.h
60  ServerConnection.h
61  TrafficControl.h
62)
63
64ADD_SUBDIRECTORY(packet)
65ADD_SUBDIRECTORY(synchronisable)
66
67ORXONOX_ADD_LIBRARY(network
68  TOLUA_FILES
69    Client.h
70    LANDiscovery.h
71  PCH_FILE
72    NetworkPrecompiledHeaders.h
73  LINK_LIBRARIES
74    ${ZLIB_LIBRARY}
75    #${ENET_LIBRARY}
76    enet_orxonox
77    ${Boost_THREAD_LIBRARY}
78    util
79    core
80  SOURCE_FILES
81    ${NETWORK_SRC_FILES} ${NETWORK_HDR_FILES}
82)
Note: See TracBrowser for help on using the repository browser.