diff options
author | Jim Carroll <thecarrolls@jiminger.com> | 2011-07-28 23:42:03 -0400 |
---|---|---|
committer | Jim Carroll <thecarrolls@jiminger.com> | 2011-07-30 08:11:59 -0400 |
commit | 360581648132b97d9260abd4f713a5192eafd3f4 (patch) | |
tree | 6b2378533a91a6d499d0efce89899d1bc3a3910f /project | |
parent | 5681777da06848b80fa272f67f657940698b6da0 (diff) |
[fixed] replaced the Vista (or later) only implementation of the ConditionVariable
Diffstat (limited to 'project')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 3 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index 304d555804..3729d60039 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -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\platform\win\FairMonitor.cpp" /> <ClCompile Include="..\..\xbmc\threads\SystemClock.cpp" /> <ClCompile Include="..\..\xbmc\threads\Thread.cpp" /> <ClCompile Include="..\..\xbmc\ThumbLoader.cpp" /> @@ -2074,4 +2075,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 a1513def78..104c127923 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -2482,6 +2482,9 @@ <ClCompile Include="..\..\xbmc\threads\SystemClock.cpp"> <Filter>threads</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\threads\platform\win\FairMonitor.cpp"> + <Filter>threads\platform\win</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\win32\pch.h"> @@ -5007,4 +5010,4 @@ <Filter>win32</Filter> </CustomBuild> </ItemGroup> -</Project> +</Project>
\ No newline at end of file |