diff options
Diffstat (limited to 'project/VS2010Express')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 4 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 12 |
2 files changed, 16 insertions, 0 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index 5e2cbcab9d..b3c41a770b 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -723,8 +723,10 @@ <ClCompile Include="..\..\xbmc\threads\Atomics.cpp" /> <ClCompile Include="..\..\xbmc\threads\Condition.cpp" /> <ClCompile Include="..\..\xbmc\threads\Event.cpp" /> + <ClCompile Include="..\..\xbmc\threads\Interruptible.cpp" /> <ClCompile Include="..\..\xbmc\threads\LockFree.cpp" /> <ClCompile Include="..\..\xbmc\threads\Thread.cpp" /> + <ClCompile Include="..\..\xbmc\threads\ThreadLocal.cpp" /> <ClCompile Include="..\..\xbmc\ThumbLoader.cpp" /> <ClCompile Include="..\..\xbmc\ThumbnailCache.cpp" /> <ClCompile Include="..\..\xbmc\URL.cpp" /> @@ -1561,10 +1563,12 @@ <ClInclude Include="..\..\xbmc\threads\Condition.h" /> <ClInclude Include="..\..\xbmc\threads\CriticalSection.h" /> <ClInclude Include="..\..\xbmc\threads\Event.h" /> + <ClInclude Include="..\..\xbmc\threads\Interruptible.h" /> <ClInclude Include="..\..\xbmc\threads\LockFree.h" /> <ClInclude Include="..\..\xbmc\threads\SharedSection.h" /> <ClInclude Include="..\..\xbmc\threads\SingleLock.h" /> <ClInclude Include="..\..\xbmc\threads\Thread.h" /> + <ClInclude Include="..\..\xbmc\threads\ThreadLocal.h" /> <ClInclude Include="..\..\xbmc\ThumbLoader.h" /> <ClInclude Include="..\..\xbmc\ThumbnailCache.h" /> <ClInclude Include="..\..\xbmc\URL.h" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index 4a62130fa5..48b6875ea7 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -2463,6 +2463,12 @@ <ClCompile Include="..\..\xbmc\threads\Condition.cpp"> <Filter>threads</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\threads\Interruptible.cpp"> + <Filter>threads</Filter> + </ClCompile> + <ClCompile Include="..\..\xbmc\threads\ThreadLocal.cpp"> + <Filter>threads</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\win32\pch.h"> @@ -4943,6 +4949,12 @@ <ClInclude Include="..\..\xbmc\threads\Condition.h"> <Filter>threads</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\threads\Interruptible.h"> + <Filter>threads</Filter> + </ClInclude> + <ClInclude Include="..\..\xbmc\threads\ThreadLocal.h"> + <Filter>threads</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <None Include="..\..\xbmc\win32\XBMC.ico"> |