2015-12-30 01:12:18 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project DefaultTargets="Build" ToolsVersion="14.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>{78CB2F39-B809-4A06-8329-8C0A19119D3D}</ProjectGuid>
|
|
|
|
|
<RootNamespace>XAudio</RootNamespace>
|
|
|
|
|
</PropertyGroup>
|
2021-05-15 18:20:12 +00:00
|
|
|
|
<Import Project="$(SolutionDir)\buildfiles\msvc\common_default.props" />
|
2015-12-30 01:12:18 +00:00
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
2020-08-14 04:33:06 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<PreferredToolArchitecture>x64</PreferredToolArchitecture>
|
|
|
|
|
</PropertyGroup>
|
2021-05-15 18:20:12 +00:00
|
|
|
|
<Import Project="$(SolutionDir)\buildfiles\msvc\common_default_macros.props" />
|
2015-12-30 01:12:18 +00:00
|
|
|
|
<PropertyGroup Label="Configuration">
|
|
|
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
|
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
|
|
|
<ImportGroup Label="ExtensionSettings">
|
|
|
|
|
</ImportGroup>
|
|
|
|
|
<ImportGroup Label="Shared">
|
|
|
|
|
</ImportGroup>
|
|
|
|
|
<ImportGroup Label="PropertySheets">
|
|
|
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
2021-05-15 18:20:12 +00:00
|
|
|
|
<Import Project="$(SolutionDir)\buildfiles\msvc\rpcs3_default.props" />
|
2015-12-30 01:12:18 +00:00
|
|
|
|
</ImportGroup>
|
|
|
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
2021-05-15 18:20:12 +00:00
|
|
|
|
<Import Project="$(SolutionDir)\buildfiles\msvc\rpcs3_debug.props" />
|
2015-12-30 01:12:18 +00:00
|
|
|
|
</ImportGroup>
|
|
|
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
2021-05-15 18:20:12 +00:00
|
|
|
|
<Import Project="$(SolutionDir)\buildfiles\msvc\rpcs3_release.props" />
|
2015-12-30 01:12:18 +00:00
|
|
|
|
</ImportGroup>
|
|
|
|
|
<PropertyGroup Label="UserMacros" />
|
2016-01-05 23:52:48 +00:00
|
|
|
|
<ItemDefinitionGroup>
|
2015-12-30 01:12:18 +00:00
|
|
|
|
<ClCompile>
|
2020-02-17 21:31:49 +00:00
|
|
|
|
<AdditionalIncludeDirectories>..\3rdparty\XAudio2Redist\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
2021-03-22 18:11:45 +00:00
|
|
|
|
<Optimization Condition="'$(Configuration)|$(Platform)'=='Release|x64'">MaxSpeed</Optimization>
|
2015-12-30 01:12:18 +00:00
|
|
|
|
</ClCompile>
|
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="emucore.vcxproj">
|
|
|
|
|
<Project>{c4a10229-4712-4bd2-b63e-50d93c67a038}</Project>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2018-12-16 17:40:50 +00:00
|
|
|
|
<ClInclude Include="Emu\Audio\XAudio2\XAudio2Backend.h" />
|
2022-07-08 15:13:38 +00:00
|
|
|
|
<ClInclude Include="Emu\Audio\XAudio2\xaudio2_enumerator.h" />
|
2015-12-30 01:12:18 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2018-12-16 17:40:50 +00:00
|
|
|
|
<ClCompile Include="Emu\Audio\XAudio2\XAudio2Backend.cpp" />
|
2022-07-08 15:13:38 +00:00
|
|
|
|
<ClCompile Include="Emu\Audio\XAudio2\xaudio2_enumerator.cpp" />
|
2015-12-30 01:12:18 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
|
|
|
<ImportGroup Label="ExtensionTargets">
|
|
|
|
|
</ImportGroup>
|
2022-07-08 15:13:38 +00:00
|
|
|
|
</Project>
|