diff options
author | Chris Roberts <croberts@bongle.co.uk> | 2012-07-05 23:54:59 +0800 |
---|---|---|
committer | Chris Roberts <croberts@bongle.co.uk> | 2012-09-10 19:26:19 +0800 |
commit | 8d507cdc88af4ae38e7a43d133f1e3e731d14b41 (patch) | |
tree | 5fe9e624b43b134f1a5775f52aece05cd8dd8bdc /project | |
parent | 7a8e012010f0d6884fc67e2132b9a8f134bbf521 (diff) |
[tags] Add new TagLoaderTagLib & associated VFSStream
Diffstat (limited to 'project')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 5 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 20 |
2 files changed, 24 insertions, 1 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index 560d9a1fc1..09df83f615 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -809,6 +809,8 @@ <ClCompile Include="..\..\xbmc\music\tags\MusicInfoTagLoaderWavPack.cpp" /> <ClCompile Include="..\..\xbmc\music\tags\MusicInfoTagLoaderWMA.cpp" /> <ClCompile Include="..\..\xbmc\music\tags\MusicInfoTagLoaderYM.cpp" /> + <ClCompile Include="..\..\xbmc\music\tags\TagLibVFSStream.cpp" /> + <ClCompile Include="..\..\xbmc\music\tags\TagLoaderTagLib.cpp" /> <ClCompile Include="..\..\xbmc\music\tags\OggTag.cpp" /> <ClCompile Include="..\..\xbmc\music\tags\VorbisTag.cpp" /> <ClCompile Include="..\..\xbmc\music\windows\GUIWindowMusicBase.cpp" /> @@ -1067,6 +1069,9 @@ <ClInclude Include="..\..\xbmc\interfaces\python\XBPython.h" /> <ClInclude Include="..\..\xbmc\interfaces\python\XBPyThread.h" /> <ClInclude Include="..\..\xbmc\music\MusicDbUrl.h" /> + <ClInclude Include="..\..\xbmc\music\tags\MusicInfoTagLoaderWav.h" /> + <ClInclude Include="..\..\xbmc\music\tags\TagLibVFSStream.h" /> + <ClInclude Include="..\..\xbmc\music\tags\TagLoaderTagLib.h" /> <ClInclude Include="..\..\xbmc\network\httprequesthandler\HTTPImageHandler.h" /> <ClInclude Include="..\..\xbmc\network\AirTunesServer.h" /> <ClInclude Include="..\..\xbmc\network\DllLibShairplay.h" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index aca6fe6322..0b234115a5 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -2963,6 +2963,15 @@ <ClCompile Include="..\..\xbmc\interfaces\python\generated\AddonModuleXbmcvfs.cpp"> <Filter>interfaces\python\generated</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\music\tags\TagLibVFSStream.cpp"> + <Filter>music\tags</Filter> + </ClCompile> + <ClCompile Include="..\..\xbmc\music\tags\TagLoaderTagLib.cpp"> + <Filter>music\tags</Filter> + </ClCompile> + <ClCompile Include="..\..\xbmc\music\tags\MusicInfoTagLoaderWav.cpp"> + <Filter>music\tags</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\win32\pch.h"> @@ -5815,6 +5824,15 @@ <ClInclude Include="..\..\xbmc\interfaces\python\XBPyThread.h"> <Filter>interfaces\python</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\music\tags\TagLibVFSStream.h"> + <Filter>music\tags</Filter> + </ClInclude> + <ClInclude Include="..\..\xbmc\music\tags\TagLoaderTagLib.h"> + <Filter>music\tags</Filter> + </ClInclude> + <ClInclude Include="..\..\xbmc\music\tags\MusicInfoTagLoaderWav.h"> + <Filter>music\tags</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\..\xbmc\win32\XBMC_PC.rc"> @@ -5858,4 +5876,4 @@ <Filter>interfaces\python\generated</Filter> </None> </ItemGroup> -</Project>
\ No newline at end of file +</Project> |