diff options
author | Karlson2k <k2k@narod.ru> | 2014-06-30 19:30:13 +0400 |
---|---|---|
committer | Karlson2k <k2k@narod.ru> | 2014-07-02 14:18:12 +0400 |
commit | a0bdc7f67c5d2f8f1133c51328212670c831b359 (patch) | |
tree | e611cb160e7c1e3f593c69739526c0220d2df402 /project/VS2010Express | |
parent | 2a7c4e4906640e236292bb535e2af59308195858 (diff) |
Move class auto_buffer to separate file
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 8048de99ef..aafc4f1447 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -970,6 +970,7 @@ <ClInclude Include="..\..\xbmc\settings\windows\GUIWindowSettingsScreenCalibration.h" /> <ClInclude Include="..\..\xbmc\settings\windows\GUIWindowTestPattern.h" /> <ClInclude Include="..\..\xbmc\utils\ActorProtocol.h" /> + <ClInclude Include="..\..\xbmc\utils\auto_buffer.h" /> <ClInclude Include="..\..\xbmc\utils\BooleanLogic.h" /> <ClInclude Include="..\..\xbmc\utils\CharsetDetection.h" /> <ClInclude Include="..\..\xbmc\utils\IRssObserver.h" /> @@ -1111,6 +1112,7 @@ <ClInclude Include="..\..\xbmc\interfaces\json-rpc\AddonsOperations.h" /> <ClCompile Include="..\..\xbmc\ThumbLoader.cpp" /> <ClCompile Include="..\..\xbmc\utils\ActorProtocol.cpp" /> + <ClCompile Include="..\..\xbmc\utils\auto_buffer.cpp" /> <ClCompile Include="..\..\xbmc\utils\BooleanLogic.cpp" /> <ClCompile Include="..\..\xbmc\utils\CharsetDetection.cpp" /> <ClCompile Include="..\..\xbmc\utils\LegacyPathTranslation.cpp" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index 5d8181125f..3ca760a921 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -3071,6 +3071,9 @@ <Filter>filesystem\win32</Filter> </ClCompile> <ClCompile Include="..\..\xbmc\CompileInfo.cpp" /> + <ClCompile Include="..\..\xbmc\utils\auto_buffer.cpp"> + <Filter>utils</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\win32\pch.h"> @@ -6016,6 +6019,9 @@ <Filter>filesystem\win32</Filter> </ClInclude> <ClInclude Include="..\..\xbmc\CompileInfo.h" /> + <ClInclude Include="..\..\xbmc\utils\auto_buffer.h"> + <Filter>utils</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\..\xbmc\win32\XBMC_PC.rc"> |