diff options
author | Martin Ellis <malard@gmail.com> | 2011-06-12 14:42:01 +0100 |
---|---|---|
committer | Martin Ellis <malard@gmail.com> | 2011-06-12 15:43:19 +0100 |
commit | 467df194f38169949c1f71476757a1a0fb253a65 (patch) | |
tree | 988b01fbd6d30673cac2fd1f0f2e3762d3229c6f | |
parent | 393a5ef33975b87e7c445f507630ebcc09b04e49 (diff) |
adding: win32 build support for keymaploader
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 2 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index 4f96dad400..f9c7c6de9a 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -437,6 +437,7 @@ <ClCompile Include="..\..\xbmc\input\ButtonTranslator.cpp" /> <ClCompile Include="..\..\xbmc\input\KeyboardLayoutConfiguration.cpp" /> <ClCompile Include="..\..\xbmc\input\KeyboardStat.cpp" /> + <ClCompile Include="..\..\xbmc\input\KeymapLoader.cpp" /> <ClCompile Include="..\..\xbmc\input\MouseStat.cpp" /> <ClCompile Include="..\..\xbmc\input\SDLJoystick.cpp" /> <ClCompile Include="..\..\xbmc\input\windows\IRServerSuite.cpp" /> @@ -1341,6 +1342,7 @@ <ClInclude Include="..\..\xbmc\input\ButtonTranslator.h" /> <ClInclude Include="..\..\xbmc\input\KeyboardLayoutConfiguration.h" /> <ClInclude Include="..\..\xbmc\input\KeyboardStat.h" /> + <ClInclude Include="..\..\xbmc\input\KeymapLoader.h" /> <ClInclude Include="..\..\xbmc\input\MouseStat.h" /> <ClInclude Include="..\..\xbmc\input\SDLJoystick.h" /> <ClInclude Include="..\..\xbmc\input\windows\IRServerSuite.h" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index 684954bc6e..7c592b1e0f 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -1823,6 +1823,9 @@ <ClCompile Include="..\..\xbmc\win32\WIN32USBScan.cpp"> <Filter>win32</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\input\KeymapLoader.cpp"> + <Filter>input</Filter> + </ClCompile> <ClCompile Include="..\..\xbmc\storage\AutorunMediaJob.cpp"> <Filter>storage</Filter> </ClCompile> @@ -4294,6 +4297,9 @@ <ClInclude Include="..\..\xbmc\win32\WIN32USBScan.h"> <Filter>win32</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\input\KeymapLoader.h"> + <Filter>input</Filter> + </ClInclude> <ClInclude Include="..\..\xbmc\storage\AutorunMediaJob.h"> <Filter>storage</Filter> </ClInclude> |