blob: 9ac71640f60ea30fdea891525a39f2b0ff7c1958 (
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
|
<?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>{85F63934-02FE-332A-8703-059040B65512}</ProjectGuid>
<ProjectName>tdactor</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\tdactor;.\td\tdutils;%(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\tdactor\td\actor\ConcurrentScheduler.cpp" />
<ClCompile Include="td\tdactor\td\actor\impl\Scheduler.cpp" />
<ClCompile Include="td\tdactor\td\actor\MultiPromise.cpp" />
<ClCompile Include="td\tdactor\td\actor\MultiTimeout.cpp" />
<ClInclude Include="td\tdactor\td\actor\ConcurrentScheduler.h" />
<ClInclude Include="td\tdactor\td\actor\impl\Actor-decl.h" />
<ClInclude Include="td\tdactor\td\actor\impl\Actor.h" />
<ClInclude Include="td\tdactor\td\actor\impl\ActorId-decl.h" />
<ClInclude Include="td\tdactor\td\actor\impl\ActorId.h" />
<ClInclude Include="td\tdactor\td\actor\impl\ActorInfo-decl.h" />
<ClInclude Include="td\tdactor\td\actor\impl\ActorInfo.h" />
<ClInclude Include="td\tdactor\td\actor\impl\EventFull-decl.h" />
<ClInclude Include="td\tdactor\td\actor\impl\EventFull.h" />
<ClInclude Include="td\tdactor\td\actor\impl\Event.h" />
<ClInclude Include="td\tdactor\td\actor\impl\Scheduler-decl.h" />
<ClInclude Include="td\tdactor\td\actor\impl\Scheduler.h" />
<ClInclude Include="td\tdactor\td\actor\MultiPromise.h" />
<ClInclude Include="td\tdactor\td\actor\MultiTimeout.h" />
<ClInclude Include="td\tdactor\td\actor\PromiseFuture.h" />
<ClInclude Include="td\tdactor\td\actor\SchedulerLocalStorage.h" />
<ClInclude Include="td\tdactor\td\actor\SignalSlot.h" />
<ClInclude Include="td\tdactor\td\actor\SleepActor.h" />
<ClInclude Include="td\tdactor\td\actor\Timeout.h" />
<ClInclude Include="td\tdactor\td\actor\actor.h" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="tdutils.vcxproj">
<Project>{D21C6A0F-BED1-3377-9659-7FC7D82EFC4F}</Project>
<Name>tdutils</Name>
</ProjectReference>
</ItemGroup>
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
|