diff options
author | Rainer Hochecker <fernetmenta@online.de> | 2014-11-11 15:48:35 +0100 |
---|---|---|
committer | Rainer Hochecker <fernetmenta@online.de> | 2014-11-11 15:48:35 +0100 |
commit | 799d4a905298388c2a8564876410c02debd3a6ef (patch) | |
tree | 00941cc09f84ada0e7394eac8c3b7456f95e814e /project/VS2010Express | |
parent | 194c2cb66ef715bdaf5cb59ec90f48fa404e51d6 (diff) | |
parent | 3b2ccfdbc469de6c480721361374c4cc265623ed (diff) |
Merge pull request #5676 from FernetMenta/guiinfo
[infomanager] only update a/v info if something has changed and only by ...
Diffstat (limited to 'project/VS2010Express')
-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 92a7ae2587..9c36fae5f4 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -216,6 +216,7 @@ <ClCompile Include="..\..\xbmc\cores\AudioEngine\Utils\AEPackIEC61937.cpp" /> <ClCompile Include="..\..\xbmc\cores\AudioEngine\Utils\AEStreamInfo.cpp" /> <ClCompile Include="..\..\xbmc\cores\AudioEngine\Utils\AEUtil.cpp" /> + <ClCompile Include="..\..\xbmc\cores\DataCacheCore.cpp" /> <ClCompile Include="..\..\xbmc\cores\dvdplayer\DVDCodecs\Audio\DVDAudioCodecPassthrough.cpp" /> <ClCompile Include="..\..\xbmc\cores\dvdplayer\DVDCodecs\Video\DVDVideoCodec.cpp" /> <ClCompile Include="..\..\xbmc\cores\dvdplayer\DVDDemuxers\DVDDemuxBXA.cpp" /> @@ -805,6 +806,7 @@ <ClInclude Include="..\..\xbmc\ApplicationPlayer.h" /> <ClInclude Include="..\..\xbmc\AppParamParser.h" /> <ClInclude Include="..\..\xbmc\CompileInfo.h" /> + <ClInclude Include="..\..\xbmc\cores\DataCacheCore.h" /> <CustomBuild Include="..\..\xbmc\GitRevision.h"> <Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">CALL update_git_rev.bat</Command> <Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..\..\xbmc\win32\git_rev.h</Outputs> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index 7e225f16e8..b570d6b240 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -3080,6 +3080,9 @@ <ClCompile Include="..\..\xbmc\video\videosync\VideoSyncD3D.cpp"> <Filter>video\videosync</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\cores\DataCacheCore.cpp"> + <Filter>cores</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\win32\pch.h"> @@ -6028,6 +6031,9 @@ <ClInclude Include="..\..\xbmc\video\videosync\VideoSync.h"> <Filter>video\videosync</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\cores\DataCacheCore.h"> + <Filter>cores</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\..\xbmc\win32\XBMC_PC.rc"> |