diff options
author | WiSo <wiso@xbmc.org> | 2011-06-18 23:09:41 +0200 |
---|---|---|
committer | Jim Carroll <thecarrolls@jiminger.com> | 2011-06-23 10:15:26 -0400 |
commit | 2208f4e544ce27884d1b1ea7222c9aa453f8f64f (patch) | |
tree | c6a83bf23492ab14febe7b9ea016e5d7bfabeb8e /project/VS2010Express | |
parent | e4e1634c4a7420e41826d689a8af17762ec55533 (diff) |
[WIN32] added Interruptible.cpp/.h and ThreadLocal.cpp to project
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"> |