diff options
author | Jose <jose@zeroc.com> | 2017-03-20 10:39:58 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-03-20 10:39:58 +0100 |
commit | 0b46a69e4765482234bb1306c9b4d904fcf0bf1c (patch) | |
tree | fc31296c85468d6584c68eb5d83e28e8dbf88b42 /python/modules | |
parent | Updated pointer hash (diff) | |
download | ice-0b46a69e4765482234bb1306c9b4d904fcf0bf1c.tar.bz2 ice-0b46a69e4765482234bb1306c9b4d904fcf0bf1c.tar.xz ice-0b46a69e4765482234bb1306c9b4d904fcf0bf1c.zip |
Fixed (ICE-7678) - Python build failure with VS 2015
Diffstat (limited to 'python/modules')
-rw-r--r-- | python/modules/IcePy/msbuild/icepy.vcxproj | 2 | ||||
-rw-r--r-- | python/modules/IcePy/msbuild/icepy.vcxproj.filters | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/python/modules/IcePy/msbuild/icepy.vcxproj b/python/modules/IcePy/msbuild/icepy.vcxproj index 587128955a0..23127fb2210 100644 --- a/python/modules/IcePy/msbuild/icepy.vcxproj +++ b/python/modules/IcePy/msbuild/icepy.vcxproj @@ -36,6 +36,7 @@ <ClCompile Include="..\Connection.cpp" /> <ClCompile Include="..\ConnectionInfo.cpp" /> <ClCompile Include="..\Current.cpp" /> + <ClCompile Include="..\Dispatcher.cpp" /> <ClCompile Include="..\Endpoint.cpp" /> <ClCompile Include="..\EndpointInfo.cpp" /> <ClCompile Include="..\ImplicitContext.cpp" /> @@ -59,6 +60,7 @@ <ClInclude Include="..\Connection.h" /> <ClInclude Include="..\ConnectionInfo.h" /> <ClInclude Include="..\Current.h" /> + <ClInclude Include="..\Dispatcher.h" /> <ClInclude Include="..\Endpoint.h" /> <ClInclude Include="..\EndpointInfo.h" /> <ClInclude Include="..\ImplicitContext.h" /> diff --git a/python/modules/IcePy/msbuild/icepy.vcxproj.filters b/python/modules/IcePy/msbuild/icepy.vcxproj.filters index 2cf60c9c6f2..2ce99eb8a4d 100644 --- a/python/modules/IcePy/msbuild/icepy.vcxproj.filters +++ b/python/modules/IcePy/msbuild/icepy.vcxproj.filters @@ -106,6 +106,9 @@ <Filter>Source Files</Filter> </ClCompile> <ClCompile Include="..\..\..\..\cpp\src\Slice\StringLiteralUtil.cpp" /> + <ClCompile Include="..\Dispatcher.cpp"> + <Filter>Source Files</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\BatchRequestInterceptor.h"> @@ -168,6 +171,9 @@ <ClInclude Include="..\PropertiesAdmin.h"> <Filter>Header Files</Filter> </ClInclude> + <ClInclude Include="..\Dispatcher.h"> + <Filter>Header Files</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\IcePy.rc"> |