diff options
author | Thomas Amland <thomas.amland@gmail.com> | 2016-03-03 17:04:43 +0100 |
---|---|---|
committer | Thomas Amland <thomas.amland@gmail.com> | 2016-03-17 13:23:03 +0100 |
commit | bd767e336df03b83fe7424d129d33cf23323a5f8 (patch) | |
tree | 6ee35274b5e6001de59b8b65f6a72538a300a7a7 /project | |
parent | 620d333bec69b6e63ccdc3629fcbcb9c0c66f756 (diff) |
[contextmenu] move addon menus to new system
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 8a4389eb89..74ffed8b0c 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -199,6 +199,7 @@ <ClCompile Include="..\..\xbmc\addons\binary\interfaces\api1\Peripheral\AddonCallbacksPeripheral.cpp" /> <ClCompile Include="..\..\xbmc\addons\binary\interfaces\api1\PVR\AddonCallbacksPVR.cpp" /> <ClCompile Include="..\..\xbmc\addons\ContextMenuAddon.cpp" /> + <ClCompile Include="..\..\xbmc\addons\ContextMenus.cpp" /> <ClCompile Include="..\..\xbmc\addons\AudioDecoder.cpp" /> <ClCompile Include="..\..\xbmc\addons\GUIDialogAddonInfo.cpp" /> <ClCompile Include="..\..\xbmc\addons\GUIDialogAddonSettings.cpp" /> @@ -972,6 +973,7 @@ <ClInclude Include="..\..\xbmc\addons\binary\interfaces\api1\PVR\AddonCallbacksPVR.h" /> <ClInclude Include="..\..\xbmc\addons\binary\interfaces\IAddonInterface.h" /> <ClInclude Include="..\..\xbmc\addons\ContextMenuAddon.h" /> + <ClInclude Include="..\..\xbmc\addons\ContextMenus.h" /> <ClInclude Include="..\..\xbmc\addons\DllPeripheral.h" /> <ClInclude Include="..\..\xbmc\addons\ImageResource.h" /> <ClInclude Include="..\..\xbmc\addons\kodi-addon-dev-kit\include\kodi\kodi_adsp_dll.h" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index 23e0c76888..850a1b9b48 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -795,6 +795,9 @@ <ClCompile Include="..\..\xbmc\addons\ContextMenuAddon.cpp"> <Filter>addons</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\addons\ContextMenus.cpp"> + <Filter>addons</Filter> + </ClCompile> <ClCompile Include="..\..\xbmc\addons\Scraper.cpp"> <Filter>addons</Filter> </ClCompile> @@ -3891,6 +3894,9 @@ <ClInclude Include="..\..\xbmc\addons\ContextMenuAddon.h"> <Filter>addons</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\addons\ContextMenus.h"> + <Filter>addons</Filter> + </ClInclude> <ClInclude Include="..\..\xbmc\addons\DllAddon.h"> <Filter>addons</Filter> </ClInclude> |