diff options
author | montellese <montellese@xbmc.org> | 2011-04-18 18:23:57 +0200 |
---|---|---|
committer | montellese <montellese@xbmc.org> | 2011-04-18 18:23:57 +0200 |
commit | ae96ad3f02fa3fa2388ed70cd96b4d35c0efcc3e (patch) | |
tree | 5eebaac1e0a5713b6bdc559ae6268a2971c059a6 /project | |
parent | 426cff31db2a28cb42764c8ca723204674ced44e (diff) |
jsonrpc: fixed Win32 build and added new permission "Navigate"
Diffstat (limited to 'project')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 6 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 8 |
2 files changed, 12 insertions, 2 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index 2edbe3cfd9..0932c1a32f 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="utf-8"?> +<?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Debug (DirectX)|Win32"> @@ -451,6 +451,7 @@ <ClCompile Include="..\..\xbmc\interfaces\json-rpc\AVPlaylistOperations.cpp" /> <ClCompile Include="..\..\xbmc\interfaces\json-rpc\FileItemHandler.cpp" /> <ClCompile Include="..\..\xbmc\interfaces\json-rpc\FileOperations.cpp" /> + <ClCompile Include="..\..\xbmc\interfaces\json-rpc\InputOperations.cpp" /> <ClCompile Include="..\..\xbmc\interfaces\json-rpc\JSONRPC.cpp" /> <ClCompile Include="..\..\xbmc\interfaces\json-rpc\JSONServiceDescription.cpp" /> <ClCompile Include="..\..\xbmc\interfaces\json-rpc\PicturePlayerOperations.cpp" /> @@ -1358,6 +1359,7 @@ <ClInclude Include="..\..\xbmc\interfaces\json-rpc\FileItemHandler.h" /> <ClInclude Include="..\..\xbmc\interfaces\json-rpc\FileOperations.h" /> <ClInclude Include="..\..\xbmc\interfaces\json-rpc\IClient.h" /> + <ClInclude Include="..\..\xbmc\interfaces\json-rpc\InputOperations.h" /> <ClInclude Include="..\..\xbmc\interfaces\json-rpc\ITransportLayer.h" /> <ClInclude Include="..\..\xbmc\interfaces\json-rpc\JSONRPC.h" /> <ClInclude Include="..\..\xbmc\interfaces\json-rpc\JSONServiceDescription.h" /> @@ -2059,4 +2061,4 @@ <UserProperties RESOURCE_FILE="XBMC_PC.rc" /> </VisualStudio> </ProjectExtensions> -</Project> +</Project>
\ No newline at end of file diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index 694ba34288..5b4665a1d0 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -2448,6 +2448,10 @@ <ClCompile Include="..\..\xbmc\win32\win32env.cpp"> <Filter>win32</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\utils\RecentlyAddedJob.cpp" /> + <ClCompile Include="..\..\xbmc\interfaces\json-rpc\InputOperations.cpp"> + <Filter>interfaces\json-rpc</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\win32\pch.h"> @@ -4897,6 +4901,10 @@ <ClInclude Include="..\..\xbmc\XBDateTime.h"> <Filter>utils</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\utils\RecentlyAddedJob.h" /> + <ClInclude Include="..\..\xbmc\interfaces\json-rpc\InputOperations.h"> + <Filter>interfaces\json-rpc</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <None Include="..\..\xbmc\win32\XBMC.ico"> |