diff options
author | Andreas Auras <yak54@inkennet.de> | 2011-09-25 02:10:23 +0200 |
---|---|---|
committer | bobo1on1 <bob-nospam-@xbmc.org> | 2011-09-30 02:49:43 +0200 |
commit | 54e4ca5c481e20cdc2f96d866f3346bfd1482ce9 (patch) | |
tree | e2d5c43e318360550c21b83c1512b16bd66633da /project | |
parent | 6aee4af65b23c08a9289b5e44424f64a8494206e (diff) |
added: CRenderCapture binding for python from pull request 448, fixes #12010
Diffstat (limited to 'project')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 2 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index 0c705432cf..5ca048a5e7 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -552,6 +552,7 @@ <ClCompile Include="..\..\xbmc\interfaces\python\xbmcmodule\pyplaylist.cpp"> <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug (OpenGL)|Win32'">..\..\project\BuildDependencies\include\python;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> </ClCompile> + <ClCompile Include="..\..\xbmc\interfaces\python\xbmcmodule\pyrendercapture.cpp" /> <ClCompile Include="..\..\xbmc\interfaces\python\xbmcmodule\PythonAddon.cpp"> <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug (OpenGL)|Win32'">..\..\project\BuildDependencies\include\python;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> </ClCompile> @@ -1429,6 +1430,7 @@ <ClInclude Include="..\..\xbmc\interfaces\python\xbmcmodule\player.h" /> <ClInclude Include="..\..\xbmc\interfaces\python\xbmcmodule\pyjsonrpc.h" /> <ClInclude Include="..\..\xbmc\interfaces\python\xbmcmodule\pyplaylist.h" /> + <ClInclude Include="..\..\xbmc\interfaces\python\xbmcmodule\pyrendercapture.h" /> <ClInclude Include="..\..\xbmc\interfaces\python\xbmcmodule\PythonAddon.h" /> <ClInclude Include="..\..\xbmc\interfaces\python\xbmcmodule\PythonPlayer.h" /> <ClInclude Include="..\..\xbmc\interfaces\python\xbmcmodule\pyutil.h" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index 8b6e188acf..c1ff5d375c 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -2550,6 +2550,9 @@ <ClCompile Include="..\..\xbmc\peripherals\dialogs\GUIDialogPeripheralSettings.cpp"> <Filter>peripherals\dialogs</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\interfaces\python\xbmcmodule\pyrendercapture.cpp"> + <Filter>interfaces\python\xbmcmodule</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\win32\pch.h"> @@ -5114,6 +5117,9 @@ <ClInclude Include="..\..\xbmc\peripherals\dialogs\GUIDialogPeripheralSettings.h"> <Filter>peripherals\dialogs</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\interfaces\python\xbmcmodule\pyrendercapture.h"> + <Filter>interfaces\python\xbmcmodule</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\..\xbmc\win32\XBMC_PC.rc"> |