diff options
author | CrystalP <CrystalP@xbmc.org> | 2011-07-20 23:53:53 -0400 |
---|---|---|
committer | CrystalP <CrystalP@xbmc.org> | 2011-07-20 23:53:53 -0400 |
commit | bb3bdb932a089365c54e6acbba8e9fe575a738e2 (patch) | |
tree | 9376934c16555ff7c3c45080f933a3a0293ea4a9 /project | |
parent | a4dd6d96dca83d503ef6c1d88f5b132754fbd17a (diff) |
[WIN32] Added SystemClock.h/.cpp to the project to fix the build
Diffstat (limited to 'project')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 6 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 15 |
2 files changed, 12 insertions, 9 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index 5c453c42b8..ca85b8083e 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="utf-8"?> +<?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Debug (DirectX)|Win32"> @@ -732,6 +732,7 @@ <ClCompile Include="..\..\xbmc\threads\Event.cpp" /> <ClCompile Include="..\..\xbmc\threads\LockFree.cpp" /> <ClCompile Include="..\..\xbmc\threads\platform\Implementation.cpp" /> + <ClCompile Include="..\..\xbmc\threads\SystemClock.cpp" /> <ClCompile Include="..\..\xbmc\threads\Thread.cpp" /> <ClCompile Include="..\..\xbmc\ThumbLoader.cpp" /> <ClCompile Include="..\..\xbmc\ThumbnailCache.cpp" /> @@ -1581,6 +1582,7 @@ <ClInclude Include="..\..\xbmc\threads\platform\win\ThreadLocal.h" /> <ClInclude Include="..\..\xbmc\threads\SharedSection.h" /> <ClInclude Include="..\..\xbmc\threads\SingleLock.h" /> + <ClInclude Include="..\..\xbmc\threads\SystemClock.h" /> <ClInclude Include="..\..\xbmc\threads\Thread.h" /> <ClInclude Include="..\..\xbmc\threads\ThreadLocal.h" /> <ClInclude Include="..\..\xbmc\ThumbLoader.h" /> @@ -2070,4 +2072,4 @@ </VisualStudio> </ProjectExtensions> <Import Project="$(SolutionDir)\$(ProjectFileName).targets.user" Condition="Exists('$(SolutionDir)\$(ProjectFileName).targets.user')" /> -</Project> +</Project>
\ No newline at end of file diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index a2e481bb8e..09caa19207 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="utf-8"?> +<?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ItemGroup> <Filter Include="win32"> @@ -2476,6 +2476,9 @@ <ClCompile Include="..\..\xbmc\threads\platform\Implementation.cpp"> <Filter>threads\platform</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\threads\SystemClock.cpp"> + <Filter>threads</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\win32\pch.h"> @@ -4984,11 +4987,9 @@ <ClInclude Include="..\..\xbmc\threads\platform\platform.select.h"> <Filter>threads\platform</Filter> </ClInclude> - </ItemGroup> - <ItemGroup> - <None Include="..\..\xbmc\win32\XBMC.ico"> - <Filter>win32</Filter> - </None> + <ClInclude Include="..\..\xbmc\threads\SystemClock.h"> + <Filter>threads</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\..\xbmc\win32\XBMC_PC.rc"> @@ -5000,4 +5001,4 @@ <Filter>win32</Filter> </CustomBuild> </ItemGroup> -</Project> +</Project>
\ No newline at end of file |