mirror of https://github.com/PCSX2/pcsx2.git
74 lines
4.2 KiB
XML
74 lines
4.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$(SolutionDir)common\vsprops\BaseProjectConfig.props" />
|
|
<Import Project="$(SolutionDir)common\vsprops\WinSDK.props" />
|
|
<PropertyGroup Label="Globals">
|
|
<ProjectGuid>{E9B51944-7E6D-4BCD-83F2-7BBD5A46182D}</ProjectGuid>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
<PropertyGroup Label="Configuration">
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
<PlatformToolset Condition="!$(Configuration.Contains(Clang))">$(DefaultPlatformToolset)</PlatformToolset>
|
|
<PlatformToolset Condition="$(Configuration.Contains(Clang))">ClangCL</PlatformToolset>
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
<WholeProgramOptimization Condition="$(Configuration.Contains(Release))">true</WholeProgramOptimization>
|
|
<UseDebugLibraries Condition="$(Configuration.Contains(Debug))">true</UseDebugLibraries>
|
|
<UseDebugLibraries Condition="!$(Configuration.Contains(Debug))">false</UseDebugLibraries>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
<ImportGroup Label="ExtensionSettings" />
|
|
<ImportGroup Label="PropertySheets">
|
|
<Import Project="..\DefaultProjectRootDir.props" />
|
|
<Import Project="..\3rdparty.props" />
|
|
<Import Condition="$(Configuration.Contains(Debug))" Project="..\..\common\vsprops\CodeGen_Debug.props" />
|
|
<Import Condition="$(Configuration.Contains(Devel))" Project="..\..\common\vsprops\CodeGen_Devel.props" />
|
|
<Import Condition="$(Configuration.Contains(Release))" Project="..\..\common\vsprops\CodeGen_Release.props" />
|
|
<Import Condition="!$(Configuration.Contains(Release))" Project="..\..\common\vsprops\IncrementalLinking.props" />
|
|
</ImportGroup>
|
|
<PropertyGroup Label="UserMacros" />
|
|
<PropertyGroup>
|
|
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<ItemDefinitionGroup>
|
|
<ClCompile>
|
|
<PreprocessorDefinitions>ST_NO_EXCEPTION_HANDLING;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
<AdditionalIncludeDirectories>$(ProjectDir)soundtouch;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
</ClCompile>
|
|
</ItemDefinitionGroup>
|
|
<ItemGroup>
|
|
<ClCompile Include="source\SoundStretch\WavFile.cpp" />
|
|
<ClCompile Include="source\SoundTouch\AAFilter.cpp" />
|
|
<ClCompile Include="source\SoundTouch\BPMDetect.cpp" />
|
|
<ClCompile Include="source\SoundTouch\cpu_detect_x86.cpp" />
|
|
<ClCompile Include="source\SoundTouch\FIFOSampleBuffer.cpp" />
|
|
<ClCompile Include="source\SoundTouch\FIRFilter.cpp" />
|
|
<ClCompile Include="source\SoundTouch\InterpolateCubic.cpp" />
|
|
<ClCompile Include="source\SoundTouch\InterpolateLinear.cpp" />
|
|
<ClCompile Include="source\SoundTouch\InterpolateShannon.cpp" />
|
|
<ClCompile Include="source\SoundTouch\mmx_optimized.cpp" />
|
|
<ClCompile Include="source\SoundTouch\PeakFinder.cpp" />
|
|
<ClCompile Include="source\SoundTouch\RateTransposer.cpp" />
|
|
<ClCompile Include="source\SoundTouch\SoundTouch.cpp" />
|
|
<ClCompile Include="source\SoundTouch\sse_optimized.cpp" />
|
|
<ClCompile Include="source\SoundTouch\TDStretch.cpp" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClInclude Include="soundtouch\BPMDetect.h" />
|
|
<ClInclude Include="soundtouch\FIFOSampleBuffer.h" />
|
|
<ClInclude Include="soundtouch\FIFOSamplePipe.h" />
|
|
<ClInclude Include="soundtouch\SoundTouch.h" />
|
|
<ClInclude Include="soundtouch\STTypes.h" />
|
|
<ClInclude Include="source\SoundStretch\WavFile.h" />
|
|
<ClInclude Include="source\SoundTouch\AAFilter.h" />
|
|
<ClInclude Include="source\SoundTouch\cpu_detect.h" />
|
|
<ClInclude Include="source\SoundTouch\FIRFilter.h" />
|
|
<ClInclude Include="source\SoundTouch\InterpolateCubic.h" />
|
|
<ClInclude Include="source\SoundTouch\InterpolateLinear.h" />
|
|
<ClInclude Include="source\SoundTouch\InterpolateShannon.h" />
|
|
<ClInclude Include="source\SoundTouch\PeakFinder.h" />
|
|
<ClInclude Include="source\SoundTouch\RateTransposer.h" />
|
|
<ClInclude Include="source\SoundTouch\TDStretch.h" />
|
|
</ItemGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
<ImportGroup Label="ExtensionTargets" />
|
|
</Project> |