mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-12-29 04:30:57 +01:00
0f3695a14b
Audio on Windows is provided by the cubeb (shared mode) and WASAPI (exclusive mode) backends, both of which exhibit lower latency.
83 lines
3.5 KiB
XML
83 lines
3.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<ItemGroup Label="ProjectConfigurations">
|
|
<ProjectConfiguration Include="Debug|x64">
|
|
<Configuration>Debug</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
<ProjectConfiguration Include="Release|x64">
|
|
<Configuration>Release</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
</ItemGroup>
|
|
<PropertyGroup Label="Globals">
|
|
<ProjectGuid>{54AA7840-5BEB-4A0C-9452-74BA4CC7FD44}</ProjectGuid>
|
|
<WindowsTargetPlatformVersion>10.0.17134.0</WindowsTargetPlatformVersion>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
<PropertyGroup Label="Configuration">
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
<PlatformToolset>v141</PlatformToolset>
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
<ImportGroup Label="ExtensionSettings">
|
|
</ImportGroup>
|
|
<ImportGroup Label="PropertySheets">
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
<Import Project="..\..\VSProps\Base.props" />
|
|
<Import Project="..\..\VSProps\PCHUse.props" />
|
|
</ImportGroup>
|
|
<PropertyGroup Label="UserMacros" />
|
|
<ItemGroup>
|
|
<ClCompile Include="AudioCommon.cpp" />
|
|
<ClCompile Include="AudioStretcher.cpp" />
|
|
<ClCompile Include="CubebStream.cpp" />
|
|
<ClCompile Include="CubebUtils.cpp" />
|
|
<ClCompile Include="Mixer.cpp" />
|
|
<ClCompile Include="NullSoundStream.cpp" />
|
|
<ClCompile Include="OpenALStream.cpp" />
|
|
<ClCompile Include="WASAPIStream.cpp" />
|
|
<ClCompile Include="SurroundDecoder.cpp" />
|
|
<ClCompile Include="WaveFile.cpp" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClInclude Include="AlsaSoundStream.h" />
|
|
<ClInclude Include="AudioCommon.h" />
|
|
<ClInclude Include="AudioStretcher.h" />
|
|
<ClInclude Include="CubebStream.h" />
|
|
<ClInclude Include="CubebUtils.h" />
|
|
<ClInclude Include="Mixer.h" />
|
|
<ClInclude Include="NullSoundStream.h" />
|
|
<ClInclude Include="OpenALStream.h" />
|
|
<ClInclude Include="OpenSLESStream.h" />
|
|
<ClInclude Include="PulseAudioStream.h" />
|
|
<ClInclude Include="SoundStream.h" />
|
|
<ClInclude Include="WASAPIStream.h" />
|
|
<ClInclude Include="SurroundDecoder.h" />
|
|
<ClInclude Include="WaveFile.h" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Text Include="CMakeLists.txt" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="$(ExternalsDir)soundtouch\SoundTouch.vcxproj">
|
|
<Project>{ec082900-b4d8-42e9-9663-77f02f6936ae}</Project>
|
|
</ProjectReference>
|
|
<ProjectReference Include="$(CoreDir)Common\Common.vcxproj">
|
|
<Project>{2e6c348c-c75c-4d94-8d1e-9c1fcbf3efe4}</Project>
|
|
</ProjectReference>
|
|
<ProjectReference Include="$(ExternalsDir)FreeSurround\FreeSurround.vcxproj">
|
|
<Project>{8498f2fa-5ca6-4169-9971-de5b1fe6132c}</Project>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
<ImportGroup Label="ExtensionTargets">
|
|
</ImportGroup>
|
|
</Project> |