Skip to content

Commit d1570fa

Browse files
committed
Added Visual Studio project
Successful build project in Visual Studio
1 parent 54f8e42 commit d1570fa

File tree

5 files changed

+273
-0
lines changed

5 files changed

+273
-0
lines changed

projects/msvs/httpserverapp.sln

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Express 2013 for Windows Desktop
4+
VisualStudioVersion = 12.0.40629.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "httpserverapp", "httpserverapp.vcxproj", "{D1565609-DDDE-4521-8AD9-0D1AD7D18525}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Win32 = Debug|Win32
11+
Debug|x64 = Debug|x64
12+
Release|Win32 = Release|Win32
13+
Release|x64 = Release|x64
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{D1565609-DDDE-4521-8AD9-0D1AD7D18525}.Debug|Win32.ActiveCfg = Debug|x64
17+
{D1565609-DDDE-4521-8AD9-0D1AD7D18525}.Debug|Win32.Build.0 = Debug|x64
18+
{D1565609-DDDE-4521-8AD9-0D1AD7D18525}.Debug|x64.ActiveCfg = Debug|x64
19+
{D1565609-DDDE-4521-8AD9-0D1AD7D18525}.Debug|x64.Build.0 = Debug|x64
20+
{D1565609-DDDE-4521-8AD9-0D1AD7D18525}.Release|Win32.ActiveCfg = Release|Win32
21+
{D1565609-DDDE-4521-8AD9-0D1AD7D18525}.Release|Win32.Build.0 = Release|Win32
22+
{D1565609-DDDE-4521-8AD9-0D1AD7D18525}.Release|x64.ActiveCfg = Release|x64
23+
{D1565609-DDDE-4521-8AD9-0D1AD7D18525}.Release|x64.Build.0 = Release|x64
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
EndGlobal
144 KB
Binary file not shown.
Lines changed: 175 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,175 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup Label="ProjectConfigurations">
4+
<ProjectConfiguration Include="Debug|Win32">
5+
<Configuration>Debug</Configuration>
6+
<Platform>Win32</Platform>
7+
</ProjectConfiguration>
8+
<ProjectConfiguration Include="Debug|x64">
9+
<Configuration>Debug</Configuration>
10+
<Platform>x64</Platform>
11+
</ProjectConfiguration>
12+
<ProjectConfiguration Include="Release|Win32">
13+
<Configuration>Release</Configuration>
14+
<Platform>Win32</Platform>
15+
</ProjectConfiguration>
16+
<ProjectConfiguration Include="Release|x64">
17+
<Configuration>Release</Configuration>
18+
<Platform>x64</Platform>
19+
</ProjectConfiguration>
20+
</ItemGroup>
21+
<ItemGroup>
22+
<ClCompile Include="..\..\src\FileIncoming.cpp" />
23+
<ClCompile Include="..\..\src\Main.cpp" />
24+
<ClCompile Include="..\..\src\Socket.cpp" />
25+
<ClCompile Include="..\..\src\System.cpp" />
26+
<ClCompile Include="..\..\src\Test.cpp" />
27+
<ClCompile Include="..\..\src\Utils.cpp" />
28+
</ItemGroup>
29+
<ItemGroup>
30+
<ClInclude Include="..\..\src\FileIncoming.h" />
31+
<ClInclude Include="..\..\src\Main.h" />
32+
<ClInclude Include="..\..\src\RawData.h" />
33+
<ClInclude Include="..\..\src\ServerRequest.h" />
34+
<ClInclude Include="..\..\src\ServerResponse.h" />
35+
<ClInclude Include="..\..\src\Socket.h" />
36+
<ClInclude Include="..\..\src\System.h" />
37+
<ClInclude Include="..\..\src\Test.h" />
38+
<ClInclude Include="..\..\src\Utils.h" />
39+
</ItemGroup>
40+
<PropertyGroup Label="Globals">
41+
<ProjectGuid>{D1565609-DDDE-4521-8AD9-0D1AD7D18525}</ProjectGuid>
42+
<Keyword>Win32Proj</Keyword>
43+
<RootNamespace>httpserverapp</RootNamespace>
44+
</PropertyGroup>
45+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
46+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
47+
<ConfigurationType>DynamicLibrary</ConfigurationType>
48+
<UseDebugLibraries>true</UseDebugLibraries>
49+
<PlatformToolset>v120</PlatformToolset>
50+
<CharacterSet>MultiByte</CharacterSet>
51+
</PropertyGroup>
52+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
53+
<ConfigurationType>DynamicLibrary</ConfigurationType>
54+
<UseDebugLibraries>true</UseDebugLibraries>
55+
<PlatformToolset>v120</PlatformToolset>
56+
<CharacterSet>MultiByte</CharacterSet>
57+
</PropertyGroup>
58+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
59+
<ConfigurationType>DynamicLibrary</ConfigurationType>
60+
<UseDebugLibraries>false</UseDebugLibraries>
61+
<PlatformToolset>v120</PlatformToolset>
62+
<WholeProgramOptimization>true</WholeProgramOptimization>
63+
<CharacterSet>MultiByte</CharacterSet>
64+
</PropertyGroup>
65+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
66+
<ConfigurationType>DynamicLibrary</ConfigurationType>
67+
<UseDebugLibraries>false</UseDebugLibraries>
68+
<PlatformToolset>v120</PlatformToolset>
69+
<WholeProgramOptimization>true</WholeProgramOptimization>
70+
<CharacterSet>MultiByte</CharacterSet>
71+
</PropertyGroup>
72+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
73+
<ImportGroup Label="ExtensionSettings">
74+
</ImportGroup>
75+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
76+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
77+
</ImportGroup>
78+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
79+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
80+
</ImportGroup>
81+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
82+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
83+
</ImportGroup>
84+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
85+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
86+
</ImportGroup>
87+
<PropertyGroup Label="UserMacros" />
88+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
89+
<LinkIncremental>true</LinkIncremental>
90+
<OutDir>..\..\build\$(Platform)\$(Configuration)\</OutDir>
91+
<IntDir>..\..\build\$(Platform)\$(Configuration)\</IntDir>
92+
</PropertyGroup>
93+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
94+
<LinkIncremental>true</LinkIncremental>
95+
<OutDir>..\..\build\$(Platform)\$(Configuration)\</OutDir>
96+
<IntDir>..\..\build\$(Platform)\$(Configuration)\</IntDir>
97+
</PropertyGroup>
98+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
99+
<LinkIncremental>false</LinkIncremental>
100+
<OutDir>..\..\build\$(Platform)\$(Configuration)\</OutDir>
101+
<IntDir>..\..\build\$(Platform)\$(Configuration)\</IntDir>
102+
</PropertyGroup>
103+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
104+
<LinkIncremental>false</LinkIncremental>
105+
<OutDir>..\..\build\$(Platform)\$(Configuration)\</OutDir>
106+
<IntDir>..\..\build\$(Platform)\$(Configuration)\</IntDir>
107+
</PropertyGroup>
108+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
109+
<ClCompile>
110+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
111+
<WarningLevel>Level3</WarningLevel>
112+
<Optimization>Disabled</Optimization>
113+
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;HTTPSERVERAPP_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
114+
<AssemblerListingLocation>$(IntDir)asm\</AssemblerListingLocation>
115+
<ObjectFileName>$(IntDir)obj\</ObjectFileName>
116+
</ClCompile>
117+
<Link>
118+
<SubSystem>Windows</SubSystem>
119+
<GenerateDebugInformation>true</GenerateDebugInformation>
120+
</Link>
121+
</ItemDefinitionGroup>
122+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
123+
<ClCompile>
124+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
125+
<WarningLevel>Level3</WarningLevel>
126+
<Optimization>Disabled</Optimization>
127+
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;HTTPSERVERAPP_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
128+
<AssemblerListingLocation>$(IntDir)asm\</AssemblerListingLocation>
129+
<ObjectFileName>$(IntDir)obj\</ObjectFileName>
130+
</ClCompile>
131+
<Link>
132+
<SubSystem>Windows</SubSystem>
133+
<GenerateDebugInformation>true</GenerateDebugInformation>
134+
</Link>
135+
</ItemDefinitionGroup>
136+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
137+
<ClCompile>
138+
<WarningLevel>Level3</WarningLevel>
139+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
140+
<Optimization>MaxSpeed</Optimization>
141+
<FunctionLevelLinking>true</FunctionLevelLinking>
142+
<IntrinsicFunctions>true</IntrinsicFunctions>
143+
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
144+
<AssemblerListingLocation>$(IntDir)asm\</AssemblerListingLocation>
145+
<ObjectFileName>$(IntDir)obj\</ObjectFileName>
146+
</ClCompile>
147+
<Link>
148+
<SubSystem>Windows</SubSystem>
149+
<GenerateDebugInformation>true</GenerateDebugInformation>
150+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
151+
<OptimizeReferences>true</OptimizeReferences>
152+
</Link>
153+
</ItemDefinitionGroup>
154+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
155+
<ClCompile>
156+
<WarningLevel>Level3</WarningLevel>
157+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
158+
<Optimization>MaxSpeed</Optimization>
159+
<FunctionLevelLinking>true</FunctionLevelLinking>
160+
<IntrinsicFunctions>true</IntrinsicFunctions>
161+
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
162+
<AssemblerListingLocation>$(IntDir)asm\</AssemblerListingLocation>
163+
<ObjectFileName>$(IntDir)obj\</ObjectFileName>
164+
</ClCompile>
165+
<Link>
166+
<SubSystem>Windows</SubSystem>
167+
<GenerateDebugInformation>true</GenerateDebugInformation>
168+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
169+
<OptimizeReferences>true</OptimizeReferences>
170+
</Link>
171+
</ItemDefinitionGroup>
172+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
173+
<ImportGroup Label="ExtensionTargets">
174+
</ImportGroup>
175+
</Project>
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<Filter Include="Source Files">
5+
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
6+
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
7+
</Filter>
8+
<Filter Include="Header Files">
9+
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
10+
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
11+
</Filter>
12+
<Filter Include="Resource Files">
13+
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
14+
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
15+
</Filter>
16+
</ItemGroup>
17+
<ItemGroup>
18+
<ClCompile Include="..\..\src\FileIncoming.cpp">
19+
<Filter>Source Files</Filter>
20+
</ClCompile>
21+
<ClCompile Include="..\..\src\Main.cpp">
22+
<Filter>Source Files</Filter>
23+
</ClCompile>
24+
<ClCompile Include="..\..\src\Socket.cpp">
25+
<Filter>Source Files</Filter>
26+
</ClCompile>
27+
<ClCompile Include="..\..\src\System.cpp">
28+
<Filter>Source Files</Filter>
29+
</ClCompile>
30+
<ClCompile Include="..\..\src\Test.cpp">
31+
<Filter>Source Files</Filter>
32+
</ClCompile>
33+
<ClCompile Include="..\..\src\Utils.cpp">
34+
<Filter>Source Files</Filter>
35+
</ClCompile>
36+
</ItemGroup>
37+
<ItemGroup>
38+
<ClInclude Include="..\..\src\FileIncoming.h">
39+
<Filter>Header Files</Filter>
40+
</ClInclude>
41+
<ClInclude Include="..\..\src\Main.h">
42+
<Filter>Header Files</Filter>
43+
</ClInclude>
44+
<ClInclude Include="..\..\src\RawData.h">
45+
<Filter>Header Files</Filter>
46+
</ClInclude>
47+
<ClInclude Include="..\..\src\ServerRequest.h">
48+
<Filter>Header Files</Filter>
49+
</ClInclude>
50+
<ClInclude Include="..\..\src\ServerResponse.h">
51+
<Filter>Header Files</Filter>
52+
</ClInclude>
53+
<ClInclude Include="..\..\src\Socket.h">
54+
<Filter>Header Files</Filter>
55+
</ClInclude>
56+
<ClInclude Include="..\..\src\System.h">
57+
<Filter>Header Files</Filter>
58+
</ClInclude>
59+
<ClInclude Include="..\..\src\Test.h">
60+
<Filter>Header Files</Filter>
61+
</ClInclude>
62+
<ClInclude Include="..\..\src\Utils.h">
63+
<Filter>Header Files</Filter>
64+
</ClInclude>
65+
</ItemGroup>
66+
</Project>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup />
4+
</Project>

0 commit comments

Comments
 (0)