diff options
author | Jim Carroll <thecarrolls@jiminger.com> | 2012-11-25 15:52:57 -0500 |
---|---|---|
committer | Jim Carroll <thecarrolls@jiminger.com> | 2012-11-25 15:52:57 -0500 |
commit | 86811d6ed10d7143ca2c5d3cdf0baef021c186f1 (patch) | |
tree | 9392d2ed8bf321c08e4740e2473f45834668fb95 /project | |
parent | 3fd761d14edc4576ef58eb0daeb532eee0d34f13 (diff) |
Added PyContext.h/cpp to the Win32 project. Fixed include path issue that was a problem on Win32.
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 59ae2a184a..fd92c6f1a1 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -756,6 +756,7 @@ <ClCompile Include="..\..\xbmc\interfaces\python\generated\AddonModuleXbmcplugin.cpp" /> <ClCompile Include="..\..\xbmc\interfaces\python\generated\AddonModuleXbmcvfs.cpp" /> <ClCompile Include="..\..\xbmc\interfaces\python\LanguageHook.cpp" /> + <ClCompile Include="..\..\xbmc\interfaces\python\PyContext.cpp" /> <ClCompile Include="..\..\xbmc\interfaces\python\swig.cpp" /> <ClCompile Include="..\..\xbmc\interfaces\python\test\TestSwig.cpp"> <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug (DirectX)|Win32'">true</ExcludedFromBuild> @@ -1077,6 +1078,7 @@ <ClInclude Include="..\..\xbmc\interfaces\python\CallbackHandler.h" /> <ClInclude Include="..\..\xbmc\interfaces\python\LanguageHook.h" /> <ClInclude Include="..\..\xbmc\interfaces\python\preamble.h" /> + <ClInclude Include="..\..\xbmc\interfaces\python\PyContext.h" /> <ClInclude Include="..\..\xbmc\interfaces\python\pythreadstate.h" /> <ClInclude Include="..\..\xbmc\interfaces\python\swig.h" /> <ClInclude Include="..\..\xbmc\interfaces\python\XBPython.h" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index 9f5870026b..08159c61f4 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -2951,6 +2951,9 @@ <ClCompile Include="..\..\xbmc\utils\test\TestUrlOptions.cpp"> <Filter>utils\test</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\interfaces\python\PyContext.cpp"> + <Filter>interfaces\python</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\win32\pch.h"> @@ -5764,6 +5767,9 @@ <ClInclude Include="..\..\xbmc\cores\AudioEngine\Utils\AELimiter.h"> <Filter>cores\AudioEngine\Utils</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\interfaces\python\PyContext.h"> + <Filter>interfaces\python</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\..\xbmc\win32\XBMC_PC.rc"> |