Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/visual_studio/network.vcproj @ 708

Last change on this file since 708 was 708, checked in by rgrieder, 16 years ago
  • added Vector2, Vector3, Matrix3, ColourValue, Quaternion and String to the misc folder as header files (each of them contains #include <string> … typedef std::string String , etc.)
  • please use String from now on by including <misc/String.h"
  • removed #include <OgreVector3.h", etc. from "CoreIncludes.h" (adjusted all source files)
  • adjusted all the source files (except network, that keeps <string> for the moment) (what a mess..)
  • moved usleep hack to misc/Sleep.h
  • relative include paths for files from other root directories (like misc, network, etc.) (but it stills writes "../Orxonox.h" when in folder orxonox/objects)
  • "OgreSceneManager.h" —> <OgreSceneManager.h>
  • included OrxonoxPrereqs in every file in folder orxonox
  • moved HUD and ParticleInterface to namespace orxonox
  • removed some using namespace Ogre/std when appropriate
  • I hope I haven't forgotten important points..
File size: 4.6 KB
Line 
1<?xml version="1.0" encoding="Windows-1252"?>
2<VisualStudioProject
3        ProjectType="Visual C++"
4        Version="8.00"
5        Name="Network"
6        ProjectGUID="{35575B59-E1AE-40E8-89C4-2862B5B09B68}"
7        RootNamespace="FICN"
8        Keyword="Win32Proj"
9        >
10        <Platforms>
11                <Platform
12                        Name="Win32"
13                />
14        </Platforms>
15        <ToolFiles>
16        </ToolFiles>
17        <Configurations>
18                <Configuration
19                        Name="Debug|Win32"
20                        ConfigurationType="4"
21                        InheritedPropertySheets=".\base_properties_debug.vsprops"
22                        CharacterSet="1"
23                        >
24                        <Tool
25                                Name="VCPreBuildEventTool"
26                        />
27                        <Tool
28                                Name="VCCustomBuildTool"
29                        />
30                        <Tool
31                                Name="VCXMLDataGeneratorTool"
32                        />
33                        <Tool
34                                Name="VCWebServiceProxyGeneratorTool"
35                        />
36                        <Tool
37                                Name="VCMIDLTool"
38                        />
39                        <Tool
40                                Name="VCCLCompilerTool"
41                                AdditionalIncludeDirectories=""
42                                PreprocessorDefinitions="WIN32_LEAN_AND_MEAN"
43                        />
44                        <Tool
45                                Name="VCManagedResourceCompilerTool"
46                        />
47                        <Tool
48                                Name="VCResourceCompilerTool"
49                        />
50                        <Tool
51                                Name="VCPreLinkEventTool"
52                        />
53                        <Tool
54                                Name="VCLibrarianTool"
55                                AdditionalLibraryDirectories=""
56                        />
57                        <Tool
58                                Name="VCALinkTool"
59                        />
60                        <Tool
61                                Name="VCXDCMakeTool"
62                        />
63                        <Tool
64                                Name="VCBscMakeTool"
65                        />
66                        <Tool
67                                Name="VCFxCopTool"
68                        />
69                        <Tool
70                                Name="VCPostBuildEventTool"
71                        />
72                </Configuration>
73                <Configuration
74                        Name="Release|Win32"
75                        ConfigurationType="4"
76                        InheritedPropertySheets=".\base_properties_release.vsprops"
77                        CharacterSet="1"
78                        WholeProgramOptimization="1"
79                        >
80                        <Tool
81                                Name="VCPreBuildEventTool"
82                        />
83                        <Tool
84                                Name="VCCustomBuildTool"
85                        />
86                        <Tool
87                                Name="VCXMLDataGeneratorTool"
88                        />
89                        <Tool
90                                Name="VCWebServiceProxyGeneratorTool"
91                        />
92                        <Tool
93                                Name="VCMIDLTool"
94                        />
95                        <Tool
96                                Name="VCCLCompilerTool"
97                                AdditionalIncludeDirectories=""
98                                PreprocessorDefinitions="WIN32_LEAN_AND_MEAN"
99                        />
100                        <Tool
101                                Name="VCManagedResourceCompilerTool"
102                        />
103                        <Tool
104                                Name="VCResourceCompilerTool"
105                        />
106                        <Tool
107                                Name="VCPreLinkEventTool"
108                        />
109                        <Tool
110                                Name="VCLibrarianTool"
111                                AdditionalLibraryDirectories=""
112                        />
113                        <Tool
114                                Name="VCALinkTool"
115                        />
116                        <Tool
117                                Name="VCXDCMakeTool"
118                        />
119                        <Tool
120                                Name="VCBscMakeTool"
121                        />
122                        <Tool
123                                Name="VCFxCopTool"
124                        />
125                        <Tool
126                                Name="VCPostBuildEventTool"
127                        />
128                </Configuration>
129        </Configurations>
130        <References>
131        </References>
132        <Files>
133                <Filter
134                        Name="Source Files"
135                        Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
136                        UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
137                        >
138                        <File
139                                RelativePath="..\src\network\Client.cc"
140                                >
141                        </File>
142                        <File
143                                RelativePath="..\src\network\ClientConnection.cc"
144                                >
145                        </File>
146                        <File
147                                RelativePath="..\src\network\ClientInformation.cc"
148                                >
149                        </File>
150                        <File
151                                RelativePath="..\src\network\ConnectionManager.cc"
152                                >
153                        </File>
154                        <File
155                                RelativePath="..\src\network\GameStateClient.cc"
156                                >
157                        </File>
158                        <File
159                                RelativePath="..\src\network\GameStateManager.cc"
160                                >
161                        </File>
162                        <File
163                                RelativePath="..\src\network\PacketBuffer.cc"
164                                >
165                        </File>
166                        <File
167                                RelativePath="..\src\network\PacketDecoder.cc"
168                                >
169                        </File>
170                        <File
171                                RelativePath="..\src\network\PacketGenerator.cc"
172                                >
173                        </File>
174                        <File
175                                RelativePath="..\src\network\Server.cc"
176                                >
177                        </File>
178                        <File
179                                RelativePath="..\src\network\Synchronisable.cc"
180                                >
181                        </File>
182                </Filter>
183                <Filter
184                        Name="Header Files"
185                        Filter="h;hpp;hxx;hm;inl;inc;xsd"
186                        UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
187                        >
188                        <File
189                                RelativePath="..\src\network\Client.h"
190                                >
191                        </File>
192                        <File
193                                RelativePath="..\src\network\ClientConnection.h"
194                                >
195                        </File>
196                        <File
197                                RelativePath="..\src\network\ClientInformation.h"
198                                >
199                        </File>
200                        <File
201                                RelativePath="..\src\network\ConnectionManager.h"
202                                >
203                        </File>
204                        <File
205                                RelativePath="..\src\network\GameStateClient.h"
206                                >
207                        </File>
208                        <File
209                                RelativePath="..\src\network\GameStateManager.h"
210                                >
211                        </File>
212                        <File
213                                RelativePath="..\src\network\NetworkFrameListener.h"
214                                >
215                        </File>
216                        <File
217                                RelativePath="..\src\network\PacketBuffer.h"
218                                >
219                        </File>
220                        <File
221                                RelativePath="..\src\network\PacketManager.h"
222                                >
223                        </File>
224                        <File
225                                RelativePath="..\src\network\PacketTypes.h"
226                                >
227                        </File>
228                        <File
229                                RelativePath="..\src\network\Server.h"
230                                >
231                        </File>
232                        <File
233                                RelativePath="..\src\network\Synchronisable.h"
234                                >
235                        </File>
236                </Filter>
237        </Files>
238        <Globals>
239        </Globals>
240</VisualStudioProject>
Note: See TracBrowser for help on using the repository browser.