blob: 7fcccfe99ee51212fa7fc98049dd6fc13d0b2a4b [file] [log] [blame]
Zlikad96b1772023-02-21 14:44:21 +01001<?xml version="1.0" encoding="utf-8"?>
2<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
Roger Meier84e4a3c2011-09-16 20:58:44 +00003 <ItemGroup Label="ProjectConfigurations">
Roger Meierbd057f62012-06-24 19:18:00 +00004 <ProjectConfiguration Include="Debug-mt|Win32">
5 <Configuration>Debug-mt</Configuration>
6 <Platform>Win32</Platform>
7 </ProjectConfiguration>
8 <ProjectConfiguration Include="Debug-mt|x64">
9 <Configuration>Debug-mt</Configuration>
10 <Platform>x64</Platform>
11 </ProjectConfiguration>
Roger Meier84e4a3c2011-09-16 20:58:44 +000012 <ProjectConfiguration Include="Debug|Win32">
13 <Configuration>Debug</Configuration>
14 <Platform>Win32</Platform>
15 </ProjectConfiguration>
Roger Meier878a9482011-10-11 19:02:37 +000016 <ProjectConfiguration Include="Debug|x64">
17 <Configuration>Debug</Configuration>
18 <Platform>x64</Platform>
19 </ProjectConfiguration>
Roger Meierbd057f62012-06-24 19:18:00 +000020 <ProjectConfiguration Include="Release-mt|Win32">
21 <Configuration>Release-mt</Configuration>
22 <Platform>Win32</Platform>
23 </ProjectConfiguration>
24 <ProjectConfiguration Include="Release-mt|x64">
25 <Configuration>Release-mt</Configuration>
26 <Platform>x64</Platform>
27 </ProjectConfiguration>
Roger Meier84e4a3c2011-09-16 20:58:44 +000028 <ProjectConfiguration Include="Release|Win32">
29 <Configuration>Release</Configuration>
30 <Platform>Win32</Platform>
31 </ProjectConfiguration>
Roger Meier878a9482011-10-11 19:02:37 +000032 <ProjectConfiguration Include="Release|x64">
33 <Configuration>Release</Configuration>
34 <Platform>x64</Platform>
35 </ProjectConfiguration>
Roger Meier84e4a3c2011-09-16 20:58:44 +000036 </ItemGroup>
37 <ItemGroup>
Zlikad96b1772023-02-21 14:44:21 +010038 <ClCompile Include="src\thrift\async\TAsyncChannel.cpp" />
39 <ClCompile Include="src\thrift\async\TConcurrentClientSyncInfo.cpp" />
40 <ClCompile Include="src\thrift\concurrency\Monitor.cpp" />
41 <ClCompile Include="src\thrift\concurrency\Mutex.cpp" />
42 <ClCompile Include="src\thrift\concurrency\Thread.cpp" />
43 <ClCompile Include="src\thrift\concurrency\ThreadFactory.cpp" />
44 <ClCompile Include="src\thrift\concurrency\ThreadManager.cpp" />
45 <ClCompile Include="src\thrift\concurrency\TimerManager.cpp" />
46 <ClCompile Include="src\thrift\processor\PeekProcessor.cpp" />
Roger Meier1516be02012-04-14 11:03:21 +000047 <ClCompile Include="src\thrift\protocol\TBase64Utils.cpp" />
Zlikad96b1772023-02-21 14:44:21 +010048 <ClCompile Include="src\thrift\protocol\TDebugProtocol.cpp" />
49 <ClCompile Include="src\thrift\protocol\TJSONProtocol.cpp" />
50 <ClCompile Include="src\thrift\protocol\TMultiplexedProtocol.cpp" />
51 <ClCompile Include="src\thrift\protocol\TProtocol.cpp" />
52 <ClCompile Include="src\thrift\server\TConnectedClient.cpp" />
53 <ClCompile Include="src\thrift\server\TServer.cpp" />
54 <ClCompile Include="src\thrift\server\TServerFramework.cpp" />
55 <ClCompile Include="src\thrift\server\TSimpleServer.cpp" />
56 <ClCompile Include="src\thrift\server\TThreadedServer.cpp" />
57 <ClCompile Include="src\thrift\server\TThreadPoolServer.cpp" />
58 <ClCompile Include="src\thrift\TApplicationException.cpp" />
59 <ClCompile Include="src\thrift\TOutput.cpp" />
CJCombrink4b909092024-04-27 19:51:39 +020060 <ClCompile Include="src\thrift\TUuid.cpp" />
Zlikad96b1772023-02-21 14:44:21 +010061 <ClCompile Include="src\thrift\transport\SocketCommon.cpp" />
62 <ClCompile Include="src\thrift\transport\TBufferTransports.cpp" />
Roger Meier1516be02012-04-14 11:03:21 +000063 <ClCompile Include="src\thrift\transport\TFDTransport.cpp" />
Zlikad96b1772023-02-21 14:44:21 +010064 <ClCompile Include="src\thrift\transport\TFileTransport.cpp" />
65 <ClCompile Include="src\thrift\transport\THttpTransport.cpp" />
Roger Meier1516be02012-04-14 11:03:21 +000066 <ClCompile Include="src\thrift\transport\TPipe.cpp" />
67 <ClCompile Include="src\thrift\transport\TPipeServer.cpp" />
Zlikad96b1772023-02-21 14:44:21 +010068 <ClCompile Include="src\thrift\transport\TServerSocket.cpp" />
Roger Meier1516be02012-04-14 11:03:21 +000069 <ClCompile Include="src\thrift\transport\TSimpleFileTransport.cpp" />
Zlikad96b1772023-02-21 14:44:21 +010070 <ClCompile Include="src\thrift\transport\TSocket.cpp" />
71 <ClCompile Include="src\thrift\transport\TSocketPool.cpp" />
72 <ClCompile Include="src\thrift\transport\TTransportException.cpp" />
73 <ClCompile Include="src\thrift\transport\TTransportUtils.cpp" />
Roger Meier1516be02012-04-14 11:03:21 +000074 <ClCompile Include="src\thrift\windows\GetTimeOfDay.cpp" />
Roger Meierfaf52db2014-06-09 22:41:06 +020075 <ClCompile Include="src\thrift\windows\OverlappedSubmissionThread.cpp" />
Roger Meier1516be02012-04-14 11:03:21 +000076 <ClCompile Include="src\thrift\windows\SocketPair.cpp" />
Roger Meier1516be02012-04-14 11:03:21 +000077 <ClCompile Include="src\thrift\windows\TWinsockSingleton.cpp" />
78 <ClCompile Include="src\thrift\windows\WinFcntl.cpp" />
Roger Meier84e4a3c2011-09-16 20:58:44 +000079 </ItemGroup>
80 <ItemGroup>
Roger Meier1516be02012-04-14 11:03:21 +000081 <ClInclude Include="src\thrift\async\TAsyncChannel.h" />
jfarrella3dc3f82016-01-05 21:10:01 -050082 <ClInclude Include="src\thrift\async\TConcurrentClientSyncInfo.h" />
Roger Meier1516be02012-04-14 11:03:21 +000083 <ClInclude Include="src\thrift\concurrency\Exception.h" />
Roger Meier1516be02012-04-14 11:03:21 +000084 <ClInclude Include="src\thrift\processor\PeekProcessor.h" />
Jens Geyer9a4f40d2014-07-04 22:02:21 +020085 <ClInclude Include="src\thrift\processor\TMultiplexedProcessor.h" />
Roger Meier1516be02012-04-14 11:03:21 +000086 <ClInclude Include="src\thrift\protocol\TBinaryProtocol.h" />
87 <ClInclude Include="src\thrift\protocol\TDebugProtocol.h" />
Roger Meier1516be02012-04-14 11:03:21 +000088 <ClInclude Include="src\thrift\protocol\TJSONProtocol.h" />
Jens Geyer9a4f40d2014-07-04 22:02:21 +020089 <ClInclude Include="src\thrift\protocol\TMultiplexedProtocol.h" />
Roger Meier1516be02012-04-14 11:03:21 +000090 <ClInclude Include="src\thrift\protocol\TProtocol.h" />
91 <ClInclude Include="src\thrift\protocol\TVirtualProtocol.h" />
92 <ClInclude Include="src\thrift\server\TServer.h" />
93 <ClInclude Include="src\thrift\server\TSimpleServer.h" />
94 <ClInclude Include="src\thrift\server\TThreadPoolServer.h" />
Jens Geyer81b3a422014-07-04 22:30:14 +020095 <ClInclude Include="src\thrift\server\TThreadedServer.h" />
Roger Meier1516be02012-04-14 11:03:21 +000096 <ClInclude Include="src\thrift\TApplicationException.h" />
97 <ClInclude Include="src\thrift\Thrift.h" />
KCris176bf0c2015-12-16 17:02:56 +020098 <ClInclude Include="src\thrift\TOutput.h" />
Roger Meier1516be02012-04-14 11:03:21 +000099 <ClInclude Include="src\thrift\TProcessor.h" />
CJCombrink4b909092024-04-27 19:51:39 +0200100 <ClInclude Include="src\thrift\TUuid.h" />
Roger Meier1516be02012-04-14 11:03:21 +0000101 <ClInclude Include="src\thrift\transport\TBufferTransports.h" />
102 <ClInclude Include="src\thrift\transport\TFDTransport.h" />
103 <ClInclude Include="src\thrift\transport\TFileTransport.h" />
Roger Meier1516be02012-04-14 11:03:21 +0000104 <ClInclude Include="src\thrift\transport\TPipe.h" />
105 <ClInclude Include="src\thrift\transport\TPipeServer.h" />
106 <ClInclude Include="src\thrift\transport\TServerSocket.h" />
107 <ClInclude Include="src\thrift\transport\TServerTransport.h" />
108 <ClInclude Include="src\thrift\transport\TSimpleFileTransport.h" />
109 <ClInclude Include="src\thrift\transport\TSocket.h" />
Roger Meier1516be02012-04-14 11:03:21 +0000110 <ClInclude Include="src\thrift\transport\TTransport.h" />
111 <ClInclude Include="src\thrift\transport\TTransportException.h" />
112 <ClInclude Include="src\thrift\transport\TTransportUtils.h" />
113 <ClInclude Include="src\thrift\transport\TVirtualTransport.h" />
114 <ClInclude Include="src\thrift\windows\config.h" />
Roger Meier1516be02012-04-14 11:03:21 +0000115 <ClInclude Include="src\thrift\windows\GetTimeOfDay.h" />
116 <ClInclude Include="src\thrift\windows\Operators.h" />
Roger Meierfaf52db2014-06-09 22:41:06 +0200117 <ClInclude Include="src\thrift\windows\OverlappedSubmissionThread.h" />
Roger Meier1516be02012-04-14 11:03:21 +0000118 <ClInclude Include="src\thrift\windows\SocketPair.h" />
Roger Meier1516be02012-04-14 11:03:21 +0000119 <ClInclude Include="src\thrift\windows\TWinsockSingleton.h" />
120 <ClInclude Include="src\thrift\windows\WinFcntl.h" />
Roger Meier84e4a3c2011-09-16 20:58:44 +0000121 </ItemGroup>
122 <ItemGroup>
Roger Meier1516be02012-04-14 11:03:21 +0000123 <None Include="src\thrift\protocol\TBinaryProtocol.tcc" />
Roger Meier84e4a3c2011-09-16 20:58:44 +0000124 </ItemGroup>
125 <PropertyGroup Label="Globals">
126 <ProjectGuid>{DD26F57E-60F2-4F37-A616-D219A9BF338F}</ProjectGuid>
127 <Keyword>Win32Proj</Keyword>
128 <RootNamespace>thrift</RootNamespace>
129 <ProjectName>libthrift</ProjectName>
130 </PropertyGroup>
131 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
132 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
133 <ConfigurationType>StaticLibrary</ConfigurationType>
134 <UseDebugLibraries>true</UseDebugLibraries>
135 <CharacterSet>MultiByte</CharacterSet>
Zlikad96b1772023-02-21 14:44:21 +0100136 <PlatformToolset>v140</PlatformToolset>
Roger Meier84e4a3c2011-09-16 20:58:44 +0000137 </PropertyGroup>
Roger Meierbd057f62012-06-24 19:18:00 +0000138 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-mt|Win32'" Label="Configuration">
139 <ConfigurationType>StaticLibrary</ConfigurationType>
140 <UseDebugLibraries>true</UseDebugLibraries>
141 <CharacterSet>MultiByte</CharacterSet>
Zlikad96b1772023-02-21 14:44:21 +0100142 <PlatformToolset>v140</PlatformToolset>
Roger Meierbd057f62012-06-24 19:18:00 +0000143 </PropertyGroup>
Roger Meier878a9482011-10-11 19:02:37 +0000144 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
145 <ConfigurationType>StaticLibrary</ConfigurationType>
146 <UseDebugLibraries>true</UseDebugLibraries>
147 <CharacterSet>MultiByte</CharacterSet>
Zlikad96b1772023-02-21 14:44:21 +0100148 <PlatformToolset>v140</PlatformToolset>
Roger Meier878a9482011-10-11 19:02:37 +0000149 </PropertyGroup>
Roger Meierbd057f62012-06-24 19:18:00 +0000150 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-mt|x64'" Label="Configuration">
151 <ConfigurationType>StaticLibrary</ConfigurationType>
152 <UseDebugLibraries>true</UseDebugLibraries>
153 <CharacterSet>MultiByte</CharacterSet>
Zlikad96b1772023-02-21 14:44:21 +0100154 <PlatformToolset>v140</PlatformToolset>
Roger Meierbd057f62012-06-24 19:18:00 +0000155 </PropertyGroup>
Roger Meier84e4a3c2011-09-16 20:58:44 +0000156 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
157 <ConfigurationType>StaticLibrary</ConfigurationType>
158 <UseDebugLibraries>false</UseDebugLibraries>
159 <WholeProgramOptimization>true</WholeProgramOptimization>
160 <CharacterSet>MultiByte</CharacterSet>
Zlikad96b1772023-02-21 14:44:21 +0100161 <PlatformToolset>v140</PlatformToolset>
Roger Meier84e4a3c2011-09-16 20:58:44 +0000162 </PropertyGroup>
Roger Meierbd057f62012-06-24 19:18:00 +0000163 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-mt|Win32'" Label="Configuration">
164 <ConfigurationType>StaticLibrary</ConfigurationType>
165 <UseDebugLibraries>false</UseDebugLibraries>
166 <WholeProgramOptimization>true</WholeProgramOptimization>
167 <CharacterSet>MultiByte</CharacterSet>
Zlikad96b1772023-02-21 14:44:21 +0100168 <PlatformToolset>v140</PlatformToolset>
Roger Meierbd057f62012-06-24 19:18:00 +0000169 </PropertyGroup>
Roger Meier878a9482011-10-11 19:02:37 +0000170 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
171 <ConfigurationType>StaticLibrary</ConfigurationType>
172 <UseDebugLibraries>false</UseDebugLibraries>
173 <WholeProgramOptimization>true</WholeProgramOptimization>
174 <CharacterSet>MultiByte</CharacterSet>
Zlikad96b1772023-02-21 14:44:21 +0100175 <PlatformToolset>v140</PlatformToolset>
Roger Meier878a9482011-10-11 19:02:37 +0000176 </PropertyGroup>
Roger Meierbd057f62012-06-24 19:18:00 +0000177 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-mt|x64'" Label="Configuration">
178 <ConfigurationType>StaticLibrary</ConfigurationType>
179 <UseDebugLibraries>false</UseDebugLibraries>
180 <WholeProgramOptimization>true</WholeProgramOptimization>
181 <CharacterSet>MultiByte</CharacterSet>
Zlikad96b1772023-02-21 14:44:21 +0100182 <PlatformToolset>v140</PlatformToolset>
Roger Meierbd057f62012-06-24 19:18:00 +0000183 </PropertyGroup>
Roger Meier84e4a3c2011-09-16 20:58:44 +0000184 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
185 <ImportGroup Label="ExtensionSettings">
186 </ImportGroup>
187 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
188 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
Roger Meierfaf52db2014-06-09 22:41:06 +0200189 <Import Project="3rdparty.props" />
Roger Meier84e4a3c2011-09-16 20:58:44 +0000190 </ImportGroup>
Roger Meierbd057f62012-06-24 19:18:00 +0000191 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug-mt|Win32'" Label="PropertySheets">
192 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
Roger Meierfaf52db2014-06-09 22:41:06 +0200193 <Import Project="3rdparty.props" />
Roger Meierbd057f62012-06-24 19:18:00 +0000194 </ImportGroup>
Roger Meier878a9482011-10-11 19:02:37 +0000195 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
196 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
Roger Meierfaf52db2014-06-09 22:41:06 +0200197 <Import Project="3rdparty.props" />
Roger Meier878a9482011-10-11 19:02:37 +0000198 </ImportGroup>
Roger Meierbd057f62012-06-24 19:18:00 +0000199 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug-mt|x64'" Label="PropertySheets">
200 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
Roger Meierfaf52db2014-06-09 22:41:06 +0200201 <Import Project="3rdparty.props" />
Roger Meierbd057f62012-06-24 19:18:00 +0000202 </ImportGroup>
Roger Meier84e4a3c2011-09-16 20:58:44 +0000203 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
204 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
Roger Meierfaf52db2014-06-09 22:41:06 +0200205 <Import Project="3rdparty.props" />
Roger Meier84e4a3c2011-09-16 20:58:44 +0000206 </ImportGroup>
Roger Meierbd057f62012-06-24 19:18:00 +0000207 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release-mt|Win32'" Label="PropertySheets">
208 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
Roger Meierfaf52db2014-06-09 22:41:06 +0200209 <Import Project="3rdparty.props" />
Roger Meierbd057f62012-06-24 19:18:00 +0000210 </ImportGroup>
Roger Meier878a9482011-10-11 19:02:37 +0000211 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
212 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
Roger Meierfaf52db2014-06-09 22:41:06 +0200213 <Import Project="3rdparty.props" />
Roger Meier878a9482011-10-11 19:02:37 +0000214 </ImportGroup>
Roger Meierbd057f62012-06-24 19:18:00 +0000215 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release-mt|x64'" Label="PropertySheets">
216 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
Roger Meierfaf52db2014-06-09 22:41:06 +0200217 <Import Project="3rdparty.props" />
Roger Meierbd057f62012-06-24 19:18:00 +0000218 </ImportGroup>
Roger Meier84e4a3c2011-09-16 20:58:44 +0000219 <PropertyGroup Label="UserMacros" />
220 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
Roger Meierfaf52db2014-06-09 22:41:06 +0200221 <IncludePath>$(ProjectDir)\src\;$(ProjectDir)\src\thrift\windows\;$(BOOST_ROOT)\include;$(BOOST_ROOT)\;$(OPENSSL_ROOT_DIR)\include\;$(IncludePath)</IncludePath>
Roger Meier84e4a3c2011-09-16 20:58:44 +0000222 </PropertyGroup>
Roger Meierbd057f62012-06-24 19:18:00 +0000223 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-mt|Win32'">
Roger Meierfaf52db2014-06-09 22:41:06 +0200224 <IncludePath>$(ProjectDir)\src\;$(ProjectDir)\src\thrift\windows\;$(BOOST_ROOT)\include;$(BOOST_ROOT)\;$(OPENSSL_ROOT_DIR)\include\;$(IncludePath)</IncludePath>
Roger Meierbd057f62012-06-24 19:18:00 +0000225 </PropertyGroup>
Roger Meier878a9482011-10-11 19:02:37 +0000226 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
Roger Meierfaf52db2014-06-09 22:41:06 +0200227 <IncludePath>$(ProjectDir)\src\;$(ProjectDir)\src\thrift\windows\;$(BOOST_ROOT)\include;$(BOOST_ROOT)\;$(OPENSSL_ROOT_DIR)\include\;$(IncludePath)</IncludePath>
Roger Meier878a9482011-10-11 19:02:37 +0000228 </PropertyGroup>
Roger Meierbd057f62012-06-24 19:18:00 +0000229 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-mt|x64'">
Roger Meierfaf52db2014-06-09 22:41:06 +0200230 <IncludePath>$(ProjectDir)\src\;$(ProjectDir)\src\thrift\windows\;$(BOOST_ROOT)\include;$(BOOST_ROOT)\;$(OPENSSL_ROOT_DIR)\include\;$(IncludePath)</IncludePath>
Roger Meierbd057f62012-06-24 19:18:00 +0000231 </PropertyGroup>
Roger Meier84e4a3c2011-09-16 20:58:44 +0000232 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
Roger Meierfaf52db2014-06-09 22:41:06 +0200233 <IncludePath>$(ProjectDir)\src\;$(ProjectDir)\src\thrift\windows\;$(BOOST_ROOT)\include;$(BOOST_ROOT)\;$(OPENSSL_ROOT_DIR)\include\;$(IncludePath)</IncludePath>
Roger Meier84e4a3c2011-09-16 20:58:44 +0000234 </PropertyGroup>
Roger Meierbd057f62012-06-24 19:18:00 +0000235 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-mt|Win32'">
Roger Meierfaf52db2014-06-09 22:41:06 +0200236 <IncludePath>$(ProjectDir)\src\;$(ProjectDir)\src\thrift\windows\;$(BOOST_ROOT)\include;$(BOOST_ROOT)\;$(OPENSSL_ROOT_DIR)\include\;$(IncludePath)</IncludePath>
Roger Meierbd057f62012-06-24 19:18:00 +0000237 </PropertyGroup>
Roger Meier878a9482011-10-11 19:02:37 +0000238 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
Roger Meierfaf52db2014-06-09 22:41:06 +0200239 <IncludePath>$(ProjectDir)\src\;$(ProjectDir)\src\thrift\windows\;$(BOOST_ROOT)\include;$(BOOST_ROOT)\;$(OPENSSL_ROOT_DIR)\include\;$(IncludePath)</IncludePath>
Roger Meier878a9482011-10-11 19:02:37 +0000240 </PropertyGroup>
Roger Meierbd057f62012-06-24 19:18:00 +0000241 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-mt|x64'">
Roger Meierfaf52db2014-06-09 22:41:06 +0200242 <IncludePath>$(ProjectDir)\src\;$(ProjectDir)\src\thrift\windows\;$(BOOST_ROOT)\include;$(BOOST_ROOT)\;$(OPENSSL_ROOT_DIR)\include\;$(IncludePath)</IncludePath>
Roger Meierbd057f62012-06-24 19:18:00 +0000243 </PropertyGroup>
Roger Meier84e4a3c2011-09-16 20:58:44 +0000244 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
245 <ClCompile>
246 <PrecompiledHeader>NotUsing</PrecompiledHeader>
247 <WarningLevel>Level3</WarningLevel>
248 <Optimization>Disabled</Optimization>
Zlikad96b1772023-02-21 14:44:21 +0100249 <PreprocessorDefinitions>HAVE_CONFIG_H=1;WIN32;thrift_EXPORTS;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
Roger Meier1b533e92011-11-16 19:11:34 +0000250 <ProgramDataBaseFileName>$(IntDir)libthrift.pdb</ProgramDataBaseFileName>
Roger Meierbd057f62012-06-24 19:18:00 +0000251 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
252 </ClCompile>
253 <Link>
254 <SubSystem>Windows</SubSystem>
255 <GenerateDebugInformation>true</GenerateDebugInformation>
256 </Link>
257 </ItemDefinitionGroup>
258 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug-mt|Win32'">
259 <ClCompile>
260 <PrecompiledHeader>NotUsing</PrecompiledHeader>
261 <WarningLevel>Level3</WarningLevel>
262 <Optimization>Disabled</Optimization>
Zlikad96b1772023-02-21 14:44:21 +0100263 <PreprocessorDefinitions>HAVE_CONFIG_H=1;WIN32;thrift_EXPORTS;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
Roger Meierbd057f62012-06-24 19:18:00 +0000264 <ProgramDataBaseFileName>$(IntDir)libthrift.pdb</ProgramDataBaseFileName>
Jens Geyer6d570262020-10-01 21:48:07 +0200265 <RuntimeLibrary>MultiThreadedDebugDll</RuntimeLibrary>
Roger Meier84e4a3c2011-09-16 20:58:44 +0000266 </ClCompile>
267 <Link>
268 <SubSystem>Windows</SubSystem>
269 <GenerateDebugInformation>true</GenerateDebugInformation>
270 </Link>
271 </ItemDefinitionGroup>
Roger Meier878a9482011-10-11 19:02:37 +0000272 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
273 <ClCompile>
274 <PrecompiledHeader>NotUsing</PrecompiledHeader>
275 <WarningLevel>Level3</WarningLevel>
276 <Optimization>Disabled</Optimization>
Carl Yeksigian7cb7fc82013-06-07 07:33:01 -0400277 <PreprocessorDefinitions>HAVE_CONFIG_H=1;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
Jens Geyer6d570262020-10-01 21:48:07 +0200278 <RuntimeLibrary>MultiThreadedDebugDll</RuntimeLibrary>
Roger Meier878a9482011-10-11 19:02:37 +0000279 </ClCompile>
280 <Link>
281 <SubSystem>Windows</SubSystem>
282 <GenerateDebugInformation>true</GenerateDebugInformation>
283 </Link>
284 </ItemDefinitionGroup>
Roger Meierbd057f62012-06-24 19:18:00 +0000285 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug-mt|x64'">
286 <ClCompile>
287 <PrecompiledHeader>NotUsing</PrecompiledHeader>
288 <WarningLevel>Level3</WarningLevel>
289 <Optimization>Disabled</Optimization>
Carl Yeksigian7cb7fc82013-06-07 07:33:01 -0400290 <PreprocessorDefinitions>HAVE_CONFIG_H=1;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
Jens Geyer6d570262020-10-01 21:48:07 +0200291 <RuntimeLibrary>MultiThreadedDebugDll</RuntimeLibrary>
Roger Meierbd057f62012-06-24 19:18:00 +0000292 </ClCompile>
293 <Link>
294 <SubSystem>Windows</SubSystem>
295 <GenerateDebugInformation>true</GenerateDebugInformation>
296 </Link>
297 </ItemDefinitionGroup>
Roger Meier84e4a3c2011-09-16 20:58:44 +0000298 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
299 <ClCompile>
300 <WarningLevel>Level3</WarningLevel>
301 <PrecompiledHeader>NotUsing</PrecompiledHeader>
302 <Optimization>MaxSpeed</Optimization>
303 <FunctionLevelLinking>true</FunctionLevelLinking>
304 <IntrinsicFunctions>true</IntrinsicFunctions>
Zlikad96b1772023-02-21 14:44:21 +0100305 <PreprocessorDefinitions>HAVE_CONFIG_H=1;WIN32;thrift_EXPORTS;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
Roger Meier1b533e92011-11-16 19:11:34 +0000306 <ProgramDataBaseFileName>$(IntDir)libthrift.pdb</ProgramDataBaseFileName>
Jens Geyer6d570262020-10-01 21:48:07 +0200307 <RuntimeLibrary>MultiThreadedDll</RuntimeLibrary>
Roger Meier84e4a3c2011-09-16 20:58:44 +0000308 </ClCompile>
309 <Link>
310 <SubSystem>Windows</SubSystem>
311 <GenerateDebugInformation>true</GenerateDebugInformation>
312 <EnableCOMDATFolding>true</EnableCOMDATFolding>
313 <OptimizeReferences>true</OptimizeReferences>
314 </Link>
315 </ItemDefinitionGroup>
Roger Meierbd057f62012-06-24 19:18:00 +0000316 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release-mt|Win32'">
317 <ClCompile>
318 <WarningLevel>Level3</WarningLevel>
319 <PrecompiledHeader>NotUsing</PrecompiledHeader>
320 <Optimization>MaxSpeed</Optimization>
321 <FunctionLevelLinking>true</FunctionLevelLinking>
322 <IntrinsicFunctions>true</IntrinsicFunctions>
Zlikad96b1772023-02-21 14:44:21 +0100323 <PreprocessorDefinitions>HAVE_CONFIG_H=1;WIN32;thrift_EXPORTS;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
Roger Meierbd057f62012-06-24 19:18:00 +0000324 <ProgramDataBaseFileName>$(IntDir)libthrift.pdb</ProgramDataBaseFileName>
Jens Geyer6d570262020-10-01 21:48:07 +0200325 <RuntimeLibrary>MultiThreadedDll</RuntimeLibrary>
Roger Meierbd057f62012-06-24 19:18:00 +0000326 </ClCompile>
327 <Link>
328 <SubSystem>Windows</SubSystem>
329 <GenerateDebugInformation>true</GenerateDebugInformation>
330 <EnableCOMDATFolding>true</EnableCOMDATFolding>
331 <OptimizeReferences>true</OptimizeReferences>
332 </Link>
333 </ItemDefinitionGroup>
Roger Meier878a9482011-10-11 19:02:37 +0000334 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
335 <ClCompile>
336 <WarningLevel>Level3</WarningLevel>
337 <PrecompiledHeader>NotUsing</PrecompiledHeader>
338 <Optimization>MaxSpeed</Optimization>
339 <FunctionLevelLinking>true</FunctionLevelLinking>
340 <IntrinsicFunctions>true</IntrinsicFunctions>
Carl Yeksigian7cb7fc82013-06-07 07:33:01 -0400341 <PreprocessorDefinitions>HAVE_CONFIG_H=1;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
Jens Geyer6d570262020-10-01 21:48:07 +0200342 <RuntimeLibrary>MultiThreadedDll</RuntimeLibrary>
Roger Meier878a9482011-10-11 19:02:37 +0000343 </ClCompile>
344 <Link>
345 <SubSystem>Windows</SubSystem>
346 <GenerateDebugInformation>true</GenerateDebugInformation>
347 <EnableCOMDATFolding>true</EnableCOMDATFolding>
348 <OptimizeReferences>true</OptimizeReferences>
349 </Link>
350 </ItemDefinitionGroup>
Roger Meierbd057f62012-06-24 19:18:00 +0000351 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release-mt|x64'">
352 <ClCompile>
353 <WarningLevel>Level3</WarningLevel>
354 <PrecompiledHeader>NotUsing</PrecompiledHeader>
355 <Optimization>MaxSpeed</Optimization>
356 <FunctionLevelLinking>true</FunctionLevelLinking>
357 <IntrinsicFunctions>true</IntrinsicFunctions>
Carl Yeksigian7cb7fc82013-06-07 07:33:01 -0400358 <PreprocessorDefinitions>HAVE_CONFIG_H=1;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
Jens Geyer6d570262020-10-01 21:48:07 +0200359 <RuntimeLibrary>MultiThreadedDll</RuntimeLibrary>
Roger Meierbd057f62012-06-24 19:18:00 +0000360 </ClCompile>
361 <Link>
362 <SubSystem>Windows</SubSystem>
363 <GenerateDebugInformation>true</GenerateDebugInformation>
364 <EnableCOMDATFolding>true</EnableCOMDATFolding>
365 <OptimizeReferences>true</OptimizeReferences>
366 </Link>
367 </ItemDefinitionGroup>
Roger Meier84e4a3c2011-09-16 20:58:44 +0000368 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
369 <ImportGroup Label="ExtensionTargets">
370 </ImportGroup>
Zlikad96b1772023-02-21 14:44:21 +0100371</Project>