Repository: thrift Updated Branches: refs/heads/master e68ccc23b -> 7be41c7ad
THRIFT-3493 libthrift does not compile on windows using visual studio Client: C++ Patch: KCris <[email protected]> This closes #745 Project: http://git-wip-us.apache.org/repos/asf/thrift/repo Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/176bf0c3 Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/176bf0c3 Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/176bf0c3 Branch: refs/heads/master Commit: 176bf0c36d0be38300ec51ea78565a9f27f844f7 Parents: e68ccc2 Author: KCris <[email protected]> Authored: Wed Dec 16 17:02:56 2015 +0200 Committer: Jens Geyer <[email protected]> Committed: Thu Dec 17 22:20:26 2015 +0100 ---------------------------------------------------------------------- lib/cpp/libthrift.vcxproj | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/thrift/blob/176bf0c3/lib/cpp/libthrift.vcxproj ---------------------------------------------------------------------- diff --git a/lib/cpp/libthrift.vcxproj b/lib/cpp/libthrift.vcxproj index b4f1c50..4feb1d7 100644 --- a/lib/cpp/libthrift.vcxproj +++ b/lib/cpp/libthrift.vcxproj @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="utf-8"?> +<?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Debug-mt|Win32"> @@ -47,12 +47,13 @@ <ClCompile Include="src\thrift\protocol\TBase64Utils.cpp" /> <ClCompile Include="src\thrift\protocol\TDebugProtocol.cpp"/> <ClCompile Include="src\thrift\protocol\TJSONProtocol.cpp"/> + <ClCompile Include="src\thrift\protocol\TProtocol.cpp"/> <ClCompile Include="src\thrift\protocol\TMultiplexedProtocol.cpp"/> <ClCompile Include="src\thrift\server\TSimpleServer.cpp"/> <ClCompile Include="src\thrift\server\TThreadPoolServer.cpp"/> <ClCompile Include="src\thrift\server\TThreadedServer.cpp"/> <ClCompile Include="src\thrift\TApplicationException.cpp"/> - <ClCompile Include="src\thrift\Thrift.cpp"/> + <ClCompile Include="src\thrift\TOutput.cpp"/> <ClCompile Include="src\thrift\transport\TBufferTransports.cpp"/> <ClCompile Include="src\thrift\transport\TFDTransport.cpp" /> <ClCompile Include="src\thrift\transport\THttpClient.cpp" /> @@ -93,6 +94,7 @@ <ClInclude Include="src\thrift\server\TThreadedServer.h" /> <ClInclude Include="src\thrift\TApplicationException.h" /> <ClInclude Include="src\thrift\Thrift.h" /> + <ClInclude Include="src\thrift\TOutput.h" /> <ClInclude Include="src\thrift\TProcessor.h" /> <ClInclude Include="src\thrift\transport\TBufferTransports.h" /> <ClInclude Include="src\thrift\transport\TFDTransport.h" />
