diff options
author | montellese <montellese@xbmc.org> | 2012-10-22 17:27:16 +0200 |
---|---|---|
committer | montellese <montellese@xbmc.org> | 2012-10-22 17:27:16 +0200 |
commit | 6c7b8183a0ebdf48a93b342a4706f7717ad13c09 (patch) | |
tree | 60678050962f9c12a28678de1f32c48c417a0f8c | |
parent | 7a0ccc49f39c9f946e024394c748b40735753720 (diff) |
[win32] add Timer.h/cpp to VS project files
-rw-r--r-- | project/VS2010Express/XbmcThreads.vcxproj | 2 | ||||
-rw-r--r-- | project/VS2010Express/XbmcThreads.vcxproj.filters | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/project/VS2010Express/XbmcThreads.vcxproj b/project/VS2010Express/XbmcThreads.vcxproj index 011ef0f8cd..e9392d75c3 100644 --- a/project/VS2010Express/XbmcThreads.vcxproj +++ b/project/VS2010Express/XbmcThreads.vcxproj @@ -14,6 +14,7 @@ <ClCompile Include="..\..\xbmc\threads\Atomics.cpp" /> <ClCompile Include="..\..\xbmc\threads\Event.cpp" /> <ClCompile Include="..\..\xbmc\threads\LockFree.cpp" /> + <ClCompile Include="..\..\xbmc\threads\Timer.cpp" /> <ClInclude Include="..\..\xbmc\threads\platform\ThreadImpl.h" /> <ClInclude Include="..\..\xbmc\threads\platform\win\ThreadImpl.cpp" /> <ClInclude Include="..\..\xbmc\threads\platform\ThreadImpl.cpp" /> @@ -22,6 +23,7 @@ <ClCompile Include="..\..\xbmc\threads\platform\win\Win32Exception.cpp" /> <ClCompile Include="..\..\xbmc\threads\SystemClock.cpp" /> <ClCompile Include="..\..\xbmc\threads\Thread.cpp" /> + <ClInclude Include="..\..\xbmc\threads\Timer.h" /> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\threads\Atomics.h" /> diff --git a/project/VS2010Express/XbmcThreads.vcxproj.filters b/project/VS2010Express/XbmcThreads.vcxproj.filters index 84cde3b920..843fd3a331 100644 --- a/project/VS2010Express/XbmcThreads.vcxproj.filters +++ b/project/VS2010Express/XbmcThreads.vcxproj.filters @@ -12,6 +12,7 @@ <ClCompile Include="..\..\xbmc\threads\platform\win\Win32Exception.cpp"> <Filter>platform\win</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\threads\Timer.cpp" /> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\threads\Atomics.h" /> @@ -63,6 +64,7 @@ <ClInclude Include="..\..\xbmc\threads\platform\win\Win32Exception.h"> <Filter>platform\win</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\threads\Timer.h" /> </ItemGroup> <ItemGroup> <Filter Include="platform"> |