forked from awwit/httpserverapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttpserverapp.cproj
More file actions
51 lines (51 loc) · 1.99 KB
/
httpserverapp.cproj
File metadata and controls
51 lines (51 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{4C15CBD7-D1C0-4869-AEE1-14CB41328514}</ProjectGuid>
<Compiler>
<Compiler ctype="GppCompiler" />
</Compiler>
<Language>CPP</Language>
<Target>Bin</Target>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\Debug</OutputPath>
<OutputName>httpserverapp</OutputName>
<CompileTarget>SharedLibrary</CompileTarget>
<DefineSymbols>DEBUG MONODEVELOP POSIX</DefineSymbols>
<SourceDirectory>.</SourceDirectory>
<ExtraCompilerArguments>-std=c++11</ExtraCompilerArguments>
<WarningLevel>All</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>bin\Release</OutputPath>
<OutputName>httpserverapp</OutputName>
<CompileTarget>SharedLibrary</CompileTarget>
<OptimizationLevel>3</OptimizationLevel>
<DefineSymbols>MONODEVELOP POSIX</DefineSymbols>
<SourceDirectory>.</SourceDirectory>
<ExtraCompilerArguments>-std=c++11</ExtraCompilerArguments>
</PropertyGroup>
<ItemGroup>
<None Include="Main.h" />
<None Include="FileIncoming.h" />
<None Include="Socket.h" />
<None Include="Utils.h" />
<None Include="RawData.h" />
<None Include="ServerRequest.h" />
<None Include="ServerResponse.h" />
<None Include="Test.h" />
<None Include="System.h" />
</ItemGroup>
<ItemGroup>
<Compile Include="Main.cpp" />
<Compile Include="FileIncoming.cpp" />
<Compile Include="Socket.cpp" />
<Compile Include="Utils.cpp" />
<Compile Include="Test.cpp" />
<Compile Include="System.cpp" />
</ItemGroup>
</Project>