Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rubberband.vcxproj « src « dll - github.com/mpc-hc/sanear.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5373f9bcabb42fb6a6d05e0b97adcee8b585655d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <ItemGroup Label="ProjectConfigurations">
    <ProjectConfiguration Include="Debug|Win32">
      <Configuration>Debug</Configuration>
      <Platform>Win32</Platform>
    </ProjectConfiguration>
    <ProjectConfiguration Include="Debug|x64">
      <Configuration>Debug</Configuration>
      <Platform>x64</Platform>
    </ProjectConfiguration>
    <ProjectConfiguration Include="Release|Win32">
      <Configuration>Release</Configuration>
      <Platform>Win32</Platform>
    </ProjectConfiguration>
    <ProjectConfiguration Include="Release|x64">
      <Configuration>Release</Configuration>
      <Platform>x64</Platform>
    </ProjectConfiguration>
  </ItemGroup>
  <PropertyGroup Label="Globals">
    <ProjectGuid>{863E6128-1F58-4371-A282-0FCC62DFF747}</ProjectGuid>
  </PropertyGroup>
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  <Import Project="..\platform.props" />
  <PropertyGroup Label="Configuration">
    <CharacterSet>Unicode</CharacterSet>
    <ConfigurationType>StaticLibrary</ConfigurationType>
  </PropertyGroup>
  <PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
    <UseDebugLibraries>true</UseDebugLibraries>
  </PropertyGroup>
  <PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
    <UseDebugLibraries>false</UseDebugLibraries>
    <WholeProgramOptimization>true</WholeProgramOptimization>
  </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" />
  </ImportGroup>
  <Import Project="..\base.props" />
  <ItemDefinitionGroup>
    <ClCompile>
      <MultiProcessorCompilation>true</MultiProcessorCompilation>
      <AdditionalIncludeDirectories>rubberband;rubberband\src;soxr\src;fftw\api</AdditionalIncludeDirectories>
      <PreprocessorDefinitions>__MSVC__;WIN32;NOMINMAX;_USE_MATH_DEFINES;NO_THREADING;PROCESS_SAMPLE_TYPE=double;HAVE_FFTW3;FFTW_DOUBLE_ONLY;HAVE_LIBSAMPLERATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    </ClCompile>
    <Link>
      <GenerateDebugInformation>true</GenerateDebugInformation>
    </Link>
  </ItemDefinitionGroup>
  <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'">
    <ClCompile>
      <Optimization>Disabled</Optimization>
      <MinimalRebuild>false</MinimalRebuild>
    </ClCompile>
  </ItemDefinitionGroup>
  <ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
    <ClCompile>
      <Optimization>MaxSpeed</Optimization>
      <FunctionLevelLinking>true</FunctionLevelLinking>
      <IntrinsicFunctions>true</IntrinsicFunctions>
    </ClCompile>
    <Link>
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
      <OptimizeReferences>true</OptimizeReferences>
    </Link>
  </ItemDefinitionGroup>
  <ItemGroup>
    <ClCompile Include="rubberband\src\audiocurves\CompoundAudioCurve.cpp" />
    <ClCompile Include="rubberband\src\audiocurves\ConstantAudioCurve.cpp" />
    <ClCompile Include="rubberband\src\audiocurves\HighFrequencyAudioCurve.cpp" />
    <ClCompile Include="rubberband\src\audiocurves\PercussiveAudioCurve.cpp" />
    <ClCompile Include="rubberband\src\audiocurves\SilentAudioCurve.cpp" />
    <ClCompile Include="rubberband\src\audiocurves\SpectralDifferenceAudioCurve.cpp" />
    <ClCompile Include="rubberband\src\base\Profiler.cpp" />
    <ClCompile Include="rubberband\src\dsp\AudioCurveCalculator.cpp" />
    <ClCompile Include="rubberband\src\dsp\FFT.cpp" />
    <ClCompile Include="rubberband\src\dsp\Resampler.cpp" />
    <ClCompile Include="rubberband\src\kissfft\kiss_fft.c" />
    <ClCompile Include="rubberband\src\kissfft\kiss_fftr.c" />
    <ClCompile Include="rubberband\src\rubberband-c.cpp" />
    <ClCompile Include="rubberband\src\RubberBandStretcher.cpp" />
    <ClCompile Include="rubberband\src\speex\resample.c">
      <ExcludedFromBuild>true</ExcludedFromBuild>
    </ClCompile>
    <ClCompile Include="rubberband\src\StretchCalculator.cpp" />
    <ClCompile Include="rubberband\src\StretcherChannelData.cpp" />
    <ClCompile Include="rubberband\src\StretcherImpl.cpp" />
    <ClCompile Include="rubberband\src\StretcherProcess.cpp" />
    <ClCompile Include="rubberband\src\system\Allocators.cpp">
      <ExcludedFromBuild>true</ExcludedFromBuild>
    </ClCompile>
    <ClCompile Include="rubberband\src\system\sysutils.cpp" />
    <ClCompile Include="rubberband\src\system\Thread.cpp" />
  </ItemGroup>
  <ItemGroup>
    <ClInclude Include="rubberband\rubberband\RubberBandStretcher.h" />
  </ItemGroup>
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  <ImportGroup Label="ExtensionTargets">
  </ImportGroup>
</Project>