diff options
author | Karlson2k <k2k@narod.ru> | 2012-10-03 23:37:58 +0400 |
---|---|---|
committer | Karlson2k <k2k@narod.ru> | 2012-10-03 23:37:58 +0400 |
commit | 3c1e8867f95ca306a7da9a4ae918545f592cb75e (patch) | |
tree | 0c33843af7f2dd4752c8c7b27bcf49b5bd43082f /project | |
parent | cf70586e5442bd0d9b9f694b9f9ea9ccf35c3bf2 (diff) |
[Peripheral] Add new class 'PeripheralImon'
Diffstat (limited to 'project')
-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 c9d01f3132..0fb846eb8e 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -864,6 +864,7 @@ <ClCompile Include="..\..\xbmc\peripherals\devices\PeripheralHID.cpp" /> <ClCompile Include="..\..\xbmc\peripherals\devices\PeripheralNIC.cpp" /> <ClCompile Include="..\..\xbmc\peripherals\devices\PeripheralNyxboard.cpp" /> + <ClCompile Include="..\..\xbmc\peripherals\devices\PeripheralImon.cpp" /> <ClCompile Include="..\..\xbmc\peripherals\devices\PeripheralTuner.cpp" /> <ClCompile Include="..\..\xbmc\peripherals\dialogs\GUIDialogPeripheralManager.cpp" /> <ClCompile Include="..\..\xbmc\peripherals\dialogs\GUIDialogPeripheralSettings.cpp" /> @@ -1189,6 +1190,7 @@ <ClInclude Include="..\..\xbmc\filesystem\ZipFile.h" /> <ClInclude Include="..\..\xbmc\filesystem\ZipManager.h" /> <ClInclude Include="..\..\xbmc\network\windows\ZeroconfBrowserWIN.h" /> + <ClInclude Include="..\..\xbmc\peripherals\devices\PeripheralImon.h" /> <ClInclude Include="..\..\xbmc\system_gl.h"> <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug (DirectX)|Win32'">true</ExcludedFromBuild> <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug Testsuite|Win32'">true</ExcludedFromBuild> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index c6c54e039c..d24d750505 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -2605,6 +2605,9 @@ <ClCompile Include="..\..\xbmc\dialogs\GUIDialogKeyboardGeneric.cpp"> <Filter>dialogs</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\peripherals\devices\PeripheralImon.cpp"> + <Filter>peripherals\devices</Filter> + </ClCompile> <ClCompile Include="..\..\xbmc\video\VideoDbUrl.cpp"> <Filter>video</Filter> </ClCompile> @@ -5574,6 +5577,9 @@ <ClInclude Include="..\..\xbmc\dialogs\GUIDialogKeyboardGeneric.h"> <Filter>dialogs</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\peripherals\devices\PeripheralImon.h"> + <Filter>peripherals\devices</Filter> + </ClInclude> <ClInclude Include="..\..\xbmc\video\VideoDbUrl.h"> <Filter>video</Filter> </ClInclude> |