diff options
author | Trent Nelson <trent.a.b.nelson@gmail.com> | 2013-09-21 02:30:54 -0400 |
---|---|---|
committer | Trent Nelson <trent.a.b.nelson@gmail.com> | 2013-10-02 23:03:33 -0400 |
commit | da3de975c1675115e3227544cd886c2cd94b0ca6 (patch) | |
tree | 73671e60d997c86a21c983c4d85cd40c40f071ac /project | |
parent | f0c8b0594d6a4a5eba963a5a46643c95601d17f5 (diff) |
Refactor CWinEvents
We need the implementations to be instantiated in order to extend the
Observer class.
Diffstat (limited to 'project')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 1 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index e2ea965cc9..65ec4a0dab 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -2000,6 +2000,7 @@ <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug Testsuite|Win32'">true</ExcludedFromBuild> <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release (DirectX)|Win32'">true</ExcludedFromBuild> </ClCompile> + <ClCompile Include="..\..\xbmc\windowing\WinEvents.cpp" /> <ClCompile Include="..\..\xbmc\windowing\WinSystem.cpp" /> <ClCompile Include="..\..\xbmc\windows\GUIMediaWindow.cpp" /> <ClCompile Include="..\..\xbmc\windows\GUIWindowDebugInfo.cpp" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index 7e5d52558d..570fb6f160 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -3073,6 +3073,9 @@ <ClCompile Include="..\..\xbmc\utils\StringValidation.cpp"> <Filter>utils</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\windowing\WinEvents.cpp"> + <Filter>windowing</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\win32\pch.h"> |