forked from awwit/httpserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttpserver.cproj
More file actions
88 lines (88 loc) · 3.49 KB
/
httpserver.cproj
File metadata and controls
88 lines (88 loc) · 3.49 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?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>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{81D9D9DB-4DE0-40E5-9CC0-6643C2695370}</ProjectGuid>
<Target>Bin</Target>
<Language>CPP</Language>
<Compiler>
<Compiler ctype="GppCompiler" />
</Compiler>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\Debug</OutputPath>
<DefineSymbols>DEBUG MONODEVELOP POSIX</DefineSymbols>
<SourceDirectory>.</SourceDirectory>
<OutputName>httpserver</OutputName>
<CompileTarget>Bin</CompileTarget>
<ExtraCompilerArguments>-std=c++11</ExtraCompilerArguments>
<ExtraLinkerArguments>-lpthread -ldl</ExtraLinkerArguments>
<Commandlineparameters>--start</Commandlineparameters>
<WarningLevel>All</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>bin\Release</OutputPath>
<DefineSymbols>MONODEVELOP POSIX</DefineSymbols>
<SourceDirectory>.</SourceDirectory>
<OptimizationLevel>3</OptimizationLevel>
<OutputName>httpserver</OutputName>
<CompileTarget>Bin</CompileTarget>
<ExtraCompilerArguments>-std=c++11</ExtraCompilerArguments>
<ExtraLinkerArguments>-lpthread -ldl</ExtraLinkerArguments>
<Commandlineparameters>--start</Commandlineparameters>
<WarningLevel>All</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Compile Include="Event.cpp" />
<Compile Include="Main.cpp" />
<Compile Include="Server.cpp" />
<Compile Include="Socket.cpp" />
<Compile Include="DataVariantFormUrlencoded.cpp" />
<Compile Include="DataVariantMultipartFormData.cpp" />
<Compile Include="FileIncoming.cpp" />
<Compile Include="ServerApplicationsTree.cpp" />
<Compile Include="Utils.cpp" />
<Compile Include="DataVariantTextPlain.cpp" />
<Compile Include="SignalsHandles.cpp" />
<Compile Include="System.cpp" />
<Compile Include="Module.cpp" />
<Compile Include="SocketList.cpp" />
</ItemGroup>
<ItemGroup>
<None Include="Event.h" />
<None Include="Main.h" />
<None Include="Server.h" />
<None Include="Socket.h" />
<None Include="Utils.h" />
<None Include="DataVariantAbstract.h" />
<None Include="DataVariantFormUrlencoded.h" />
<None Include="DataVariantMultipartFormData.h" />
<None Include="FileIncoming.h" />
<None Include="ServerRequest.h" />
<None Include="ServerResponse.h" />
<None Include="ServerApplicationSettings.h" />
<None Include="ServerApplicationsTree.h" />
<None Include="Module.h" />
<None Include="System.h" />
<None Include="RawData.h" />
<None Include="DataVariantTextPlain.h" />
<None Include="SignalsHandles.h" />
<None Include="ServerApplicationDefaultSettings.h" />
<None Include="SocketList.h" />
</ItemGroup>
<ProjectExtensions>
<MonoDevelop>
<Properties>
<Policies>
<VersionControlPolicy inheritsSet="Mono">
<CommitMessageStyle FileSeparator=", " LastFilePostfix=":
 " />
</VersionControlPolicy>
</Policies>
</Properties>
</MonoDevelop>
</ProjectExtensions>
</Project>