diff options
Diffstat (limited to 'project/VS2010Express')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 2 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 6 | ||||
-rw-r--r-- | project/VS2010Express/XbmcCommons.vcxproj | 2 | ||||
-rw-r--r-- | project/VS2010Express/XbmcCommons.vcxproj.filters | 2 | ||||
-rw-r--r-- | project/VS2010Express/XbmcThreads.vcxproj | 2 | ||||
-rw-r--r-- | project/VS2010Express/XbmcThreads.vcxproj.filters | 6 |
6 files changed, 12 insertions, 8 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index 8502423a63..b89c2c8a42 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -1124,7 +1124,6 @@ <ClCompile Include="..\..\xbmc\utils\URIUtils.cpp" /> <ClCompile Include="..\..\xbmc\utils\Variant.cpp" /> <ClCompile Include="..\..\xbmc\utils\Weather.cpp" /> - <ClCompile Include="..\..\xbmc\utils\Win32Exception.cpp" /> <ClCompile Include="..\..\xbmc\utils\XBMCTinyXML.cpp" /> <ClCompile Include="..\..\xbmc\utils\XMLUtils.cpp" /> <ClCompile Include="..\..\xbmc\video\Bookmark.cpp" /> @@ -1922,7 +1921,6 @@ <ClInclude Include="..\..\xbmc\utils\URIUtils.h" /> <ClInclude Include="..\..\xbmc\utils\Variant.h" /> <ClInclude Include="..\..\xbmc\utils\Weather.h" /> - <ClInclude Include="..\..\xbmc\utils\Win32Exception.h" /> <ClInclude Include="..\..\xbmc\utils\XBMCTinyXML.h" /> <ClInclude Include="..\..\xbmc\utils\XMLUtils.h" /> <ClInclude Include="..\..\xbmc\video\Bookmark.h" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index c01e4df638..a79c4637a0 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -1669,9 +1669,6 @@ <ClCompile Include="..\..\xbmc\utils\Weather.cpp"> <Filter>utils</Filter> </ClCompile> - <ClCompile Include="..\..\xbmc\utils\Win32Exception.cpp"> - <Filter>utils</Filter> - </ClCompile> <ClCompile Include="..\..\xbmc\utils\XMLUtils.cpp"> <Filter>utils</Filter> </ClCompile> @@ -4273,9 +4270,6 @@ <ClInclude Include="..\..\xbmc\utils\Weather.h"> <Filter>utils</Filter> </ClInclude> - <ClInclude Include="..\..\xbmc\utils\Win32Exception.h"> - <Filter>utils</Filter> - </ClInclude> <ClInclude Include="..\..\xbmc\utils\XMLUtils.h"> <Filter>utils</Filter> </ClInclude> diff --git a/project/VS2010Express/XbmcCommons.vcxproj b/project/VS2010Express/XbmcCommons.vcxproj index 6215e86c6e..0fadaf9696 100644 --- a/project/VS2010Express/XbmcCommons.vcxproj +++ b/project/VS2010Express/XbmcCommons.vcxproj @@ -11,9 +11,11 @@ </ProjectConfiguration> </ItemGroup> <ItemGroup> + <ClCompile Include="..\..\xbmc\commons\Exception.cpp" /> <ClCompile Include="..\..\xbmc\commons\ilog.cpp" /> </ItemGroup> <ItemGroup> + <ClInclude Include="..\..\xbmc\commons\Exception.h" /> <ClInclude Include="..\..\xbmc\commons\ilog.h" /> </ItemGroup> <PropertyGroup Label="Globals"> diff --git a/project/VS2010Express/XbmcCommons.vcxproj.filters b/project/VS2010Express/XbmcCommons.vcxproj.filters index 7d6142ac1f..7a3faa57a4 100644 --- a/project/VS2010Express/XbmcCommons.vcxproj.filters +++ b/project/VS2010Express/XbmcCommons.vcxproj.filters @@ -2,8 +2,10 @@ <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ItemGroup> <ClCompile Include="..\..\xbmc\commons\ilog.cpp" /> + <ClCompile Include="..\..\xbmc\commons\Exception.cpp" /> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\commons\ilog.h" /> + <ClInclude Include="..\..\xbmc\commons\Exception.h" /> </ItemGroup> </Project>
\ No newline at end of file diff --git a/project/VS2010Express/XbmcThreads.vcxproj b/project/VS2010Express/XbmcThreads.vcxproj index e5df0b230f..c6c75880e7 100644 --- a/project/VS2010Express/XbmcThreads.vcxproj +++ b/project/VS2010Express/XbmcThreads.vcxproj @@ -19,6 +19,7 @@ <ClInclude Include="..\..\xbmc\threads\platform\ThreadImpl.cpp" /> <ClCompile Include="..\..\xbmc\threads\platform\Implementation.cpp" /> <ClInclude Include="..\..\xbmc\threads\platform\win\Implementation.cpp" /> + <ClCompile Include="..\..\xbmc\threads\platform\win\Win32Exception.cpp" /> <ClCompile Include="..\..\xbmc\threads\SystemClock.cpp" /> <ClCompile Include="..\..\xbmc\threads\Thread.cpp" /> </ItemGroup> @@ -37,6 +38,7 @@ <ClInclude Include="..\..\xbmc\threads\platform\win\CriticalSection.h" /> <ClInclude Include="..\..\xbmc\threads\platform\win\ThreadImpl.h" /> <ClInclude Include="..\..\xbmc\threads\platform\win\ThreadLocal.h" /> + <ClInclude Include="..\..\xbmc\threads\platform\win\Win32Exception.h" /> <ClInclude Include="..\..\xbmc\threads\SharedSection.h" /> <ClInclude Include="..\..\xbmc\threads\SingleLock.h" /> <ClInclude Include="..\..\xbmc\threads\SystemClock.h" /> diff --git a/project/VS2010Express/XbmcThreads.vcxproj.filters b/project/VS2010Express/XbmcThreads.vcxproj.filters index 14353ed658..84cde3b920 100644 --- a/project/VS2010Express/XbmcThreads.vcxproj.filters +++ b/project/VS2010Express/XbmcThreads.vcxproj.filters @@ -9,6 +9,9 @@ <ClCompile Include="..\..\xbmc\threads\platform\Implementation.cpp"> <Filter>platform</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\threads\platform\win\Win32Exception.cpp"> + <Filter>platform\win</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\threads\Atomics.h" /> @@ -57,6 +60,9 @@ <ClInclude Include="..\..\xbmc\threads\platform\win\Implementation.cpp"> <Filter>platform\win</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\threads\platform\win\Win32Exception.h"> + <Filter>platform\win</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <Filter Include="platform"> |