diff options
author | Memphiz <memphis@machzwo.de> | 2012-06-01 00:14:39 -0700 |
---|---|---|
committer | Memphiz <memphis@machzwo.de> | 2012-06-01 00:14:39 -0700 |
commit | 24be469c903b071dee87aebb2ca90674e2dd9b42 (patch) | |
tree | 78886b0d9f53d52ab85b9fc6db9cc58af5c8024f /project | |
parent | 5840e982805b9674901a3e3855fc59e88b7add54 (diff) | |
parent | fa0d34c8af9ddb3176fe579ae78bd24cda893b20 (diff) |
Merge pull request #968 from Memphiz/airtunes
Airtunes support for windows
Diffstat (limited to 'project')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 5 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 11 |
2 files changed, 14 insertions, 2 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index b605adc80f..8a87eadaf9 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -783,6 +783,7 @@ <ClCompile Include="..\..\xbmc\music\windows\GUIWindowMusicSongs.cpp" /> <ClCompile Include="..\..\xbmc\music\windows\GUIWindowVisualisation.cpp" /> <ClCompile Include="..\..\xbmc\network\AirPlayServer.cpp" /> + <ClCompile Include="..\..\xbmc\network\AirTunesServer.cpp" /> <ClCompile Include="..\..\xbmc\network\cddb.cpp" /> <ClCompile Include="..\..\xbmc\network\DNSNameCache.cpp" /> <ClCompile Include="..\..\xbmc\network\EventClient.cpp" /> @@ -930,6 +931,8 @@ <ClInclude Include="..\..\xbmc\filesystem\windows\WINSMBDirectory.h" /> <ClInclude Include="..\..\xbmc\interfaces\python\xbmcmodule\pythreadstate.h" /> <ClInclude Include="..\..\xbmc\network\httprequesthandler\HTTPImageHandler.h" /> + <ClInclude Include="..\..\xbmc\network\AirTunesServer.h" /> + <ClInclude Include="..\..\xbmc\network\DllLibShairplay.h" /> <ClInclude Include="..\..\xbmc\network\websocket\WebSocket.h" /> <ClInclude Include="..\..\xbmc\network\websocket\WebSocketManager.h" /> <ClInclude Include="..\..\xbmc\network\websocket\WebSocketV13.h" /> @@ -2282,4 +2285,4 @@ </VisualStudio> </ProjectExtensions> <Import Project="$(SolutionDir)\$(ProjectFileName).targets.user" Condition="Exists('$(SolutionDir)\$(ProjectFileName).targets.user')" /> -</Project>
\ No newline at end of file +</Project> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index f839a4b504..b12e8b6043 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -2584,6 +2584,9 @@ <ClCompile Include="..\..\xbmc\network\httprequesthandler\HTTPImageHandler.cpp"> <Filter>network\httprequesthandler</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\network\AirTunesServer.cpp"> + <Filter>network</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\win32\pch.h"> @@ -5205,6 +5208,12 @@ <ClInclude Include="..\..\xbmc\network\httprequesthandler\HTTPImageHandler.h"> <Filter>network\httprequesthandler</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\network\AirTunesServer.h"> + <Filter>network</Filter> + </ClInclude> + <ClInclude Include="..\..\xbmc\network\DllLibShairplay.h"> + <Filter>network</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\..\xbmc\win32\XBMC_PC.rc"> @@ -5216,4 +5225,4 @@ <Filter>win32</Filter> </CustomBuild> </ItemGroup> -</Project>
\ No newline at end of file +</Project> |