blob: e725eb36016df4ea862f59b0bc60ad0e2f406345 (
plain)
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
89
90
91
92
93
|
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{2246C3CF-7888-3102-984A-80214ADF418C}</ProjectGuid>
<ProjectName>tdnet</ProjectName>
</PropertyGroup>
<PropertyGroup Label="Configuration">
<PlatformToolset>v141_xp</PlatformToolset>
</PropertyGroup>
<Import Project="..\..\..\build\vc.common\slib.props" />
<PropertyGroup>
<OutDir Condition="'$(Platform)'=='Win32'">$(ProjectDir)lib\$(Configuration)32\</OutDir>
<OutDir Condition="'$(Platform)'=='x64'">$(ProjectDir)lib\$(Configuration)64\</OutDir>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<AdditionalIncludeDirectories>.\td\tdnet;..\..\..\include;.\td\tdutils;.\td\tdactor;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalOptions>%(AdditionalOptions) /bigobj</AdditionalOptions>
<DisableSpecificWarnings>4100;4127;4324;4505;4702</DisableSpecificWarnings>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<BufferSecurityCheck Condition="'$(Configuration)'=='Release'">false</BufferSecurityCheck>
<ControlFlowGuard Condition="'$(Configuration)'=='Release'">false</ControlFlowGuard>
<FunctionLevelLinking Condition="'$(Configuration)'=='Release'">true</FunctionLevelLinking>
<EnableParallelCodeGeneration Condition="'$(Configuration)'=='Release'">true</EnableParallelCodeGeneration>
</ClCompile>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="td\tdnet\td\net\GetHostByNameActor.cpp" />
<ClCompile Include="td\tdnet\td\net\HttpChunkedByteFlow.cpp" />
<ClCompile Include="td\tdnet\td\net\HttpConnectionBase.cpp" />
<ClCompile Include="td\tdnet\td\net\HttpContentLengthByteFlow.cpp" />
<ClCompile Include="td\tdnet\td\net\HttpFile.cpp" />
<ClCompile Include="td\tdnet\td\net\HttpInboundConnection.cpp" />
<ClCompile Include="td\tdnet\td\net\HttpOutboundConnection.cpp" />
<ClCompile Include="td\tdnet\td\net\HttpProxy.cpp" />
<ClCompile Include="td\tdnet\td\net\HttpQuery.cpp" />
<ClCompile Include="td\tdnet\td\net\HttpReader.cpp" />
<ClCompile Include="td\tdnet\td\net\Socks5.cpp" />
<ClCompile Include="td\tdnet\td\net\SslCtx.cpp" />
<ClCompile Include="td\tdnet\td\net\SslStream.cpp" />
<ClCompile Include="td\tdnet\td\net\TcpListener.cpp" />
<ClCompile Include="td\tdnet\td\net\TransparentProxy.cpp" />
<ClCompile Include="td\tdnet\td\net\Wget.cpp" />
<ClInclude Include="td\tdnet\td\net\GetHostByNameActor.h" />
<ClInclude Include="td\tdnet\td\net\HttpChunkedByteFlow.h" />
<ClInclude Include="td\tdnet\td\net\HttpConnectionBase.h" />
<ClInclude Include="td\tdnet\td\net\HttpContentLengthByteFlow.h" />
<ClInclude Include="td\tdnet\td\net\HttpFile.h" />
<ClInclude Include="td\tdnet\td\net\HttpHeaderCreator.h" />
<ClInclude Include="td\tdnet\td\net\HttpInboundConnection.h" />
<ClInclude Include="td\tdnet\td\net\HttpOutboundConnection.h" />
<ClInclude Include="td\tdnet\td\net\HttpProxy.h" />
<ClInclude Include="td\tdnet\td\net\HttpQuery.h" />
<ClInclude Include="td\tdnet\td\net\HttpReader.h" />
<ClInclude Include="td\tdnet\td\net\NetStats.h" />
<ClInclude Include="td\tdnet\td\net\Socks5.h" />
<ClInclude Include="td\tdnet\td\net\SslCtx.h" />
<ClInclude Include="td\tdnet\td\net\SslStream.h" />
<ClInclude Include="td\tdnet\td\net\TcpListener.h" />
<ClInclude Include="td\tdnet\td\net\TransparentProxy.h" />
<ClInclude Include="td\tdnet\td\net\Wget.h" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="tdactor.vcxproj">
<Project>{85F63934-02FE-332A-8703-059040B65512}</Project>
<Name>tdactor</Name>
</ProjectReference>
<ProjectReference Include="tdutils.vcxproj">
<Project>{D21C6A0F-BED1-3377-9659-7FC7D82EFC4F}</Project>
<Name>tdutils</Name>
</ProjectReference>
</ItemGroup>
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
|