2021-09-26 06:35:15 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project ToolsVersion="15.0" 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>{BF74C473-DC04-44B3-92E8-4145F4E77342}</ProjectGuid>
|
|
|
|
|
<Keyword>Win32Proj</Keyword>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
|
|
|
<PropertyGroup Label="Configuration">
|
|
|
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
2022-12-25 06:47:26 +00:00
|
|
|
|
<PlatformToolset Condition="!$(Configuration.Contains(Clang))">$(DefaultPlatformToolset)</PlatformToolset>
|
|
|
|
|
<PlatformToolset Condition="$(Configuration.Contains(Clang))">ClangCL</PlatformToolset>
|
2021-09-26 06:35:15 +00:00
|
|
|
|
<CharacterSet>MultiByte</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>
|
|
|
|
|
<WarningLevel>TurnOffAllWarnings</WarningLevel>
|
2024-03-21 09:54:35 +00:00
|
|
|
|
<PreprocessorDefinitions>USE_WASAPI;OUTSIDE_SPEEX;FLOATING_POINT;RANDOM_PREFIX=speex;EXPORT=;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
|
|
<PreprocessorDefinitions Condition="'$(Platform)'!='ARM64'">USE_WINMM;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
2022-09-29 12:49:50 +00:00
|
|
|
|
<AdditionalIncludeDirectories>$(ProjectDir)include;$(ProjectDir)src;$(ProjectDir)subprojects;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
2021-09-26 06:35:15 +00:00
|
|
|
|
<LanguageStandard>stdcpp14</LanguageStandard>
|
|
|
|
|
</ClCompile>
|
2024-03-21 09:54:35 +00:00
|
|
|
|
<Lib>
|
|
|
|
|
<AdditionalDependencies Condition="'$(Platform)'!='ARM64'">ksuser.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
|
|
|
</Lib>
|
2021-09-26 06:35:15 +00:00
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
|
<ItemGroup>
|
2022-09-29 12:49:50 +00:00
|
|
|
|
<ClInclude Include="include\cubeb\cubeb.h" />
|
|
|
|
|
<ClInclude Include="subprojects\speex\arch.h" />
|
|
|
|
|
<ClInclude Include="subprojects\speex\fixed_generic.h" />
|
|
|
|
|
<ClInclude Include="subprojects\speex\resample_neon.h" />
|
|
|
|
|
<ClInclude Include="subprojects\speex\resample_sse.h" />
|
|
|
|
|
<ClInclude Include="subprojects\speex\speex_config_types.h" />
|
|
|
|
|
<ClInclude Include="subprojects\speex\speex_resampler.h" />
|
|
|
|
|
<ClInclude Include="subprojects\speex\stack_alloc.h" />
|
|
|
|
|
<ClInclude Include="src\cubeb-internal.h" />
|
|
|
|
|
<ClInclude Include="src\cubeb-speex-resampler.h" />
|
|
|
|
|
<ClInclude Include="src\cubeb_assert.h" />
|
|
|
|
|
<ClInclude Include="src\cubeb_log.h" />
|
|
|
|
|
<ClInclude Include="src\cubeb_mixer.h" />
|
|
|
|
|
<ClInclude Include="src\cubeb_resampler.h" />
|
|
|
|
|
<ClInclude Include="src\cubeb_resampler_internal.h" />
|
|
|
|
|
<ClInclude Include="src\cubeb_ringbuffer.h" />
|
|
|
|
|
<ClInclude Include="src\cubeb_ring_array.h" />
|
|
|
|
|
<ClInclude Include="src\cubeb_strings.h" />
|
|
|
|
|
<ClInclude Include="src\cubeb_utils.h" />
|
|
|
|
|
<ClInclude Include="src\cubeb_utils_win.h" />
|
2021-09-26 06:35:15 +00:00
|
|
|
|
<ClInclude Include="include\cubeb_export.h" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2022-09-29 12:49:50 +00:00
|
|
|
|
<ClCompile Include="src\cubeb.c" />
|
|
|
|
|
<ClCompile Include="src\cubeb_log.cpp" />
|
|
|
|
|
<ClCompile Include="src\cubeb_mixer.cpp" />
|
|
|
|
|
<ClCompile Include="src\cubeb_resampler.cpp" />
|
|
|
|
|
<ClCompile Include="src\cubeb_strings.c" />
|
|
|
|
|
<ClCompile Include="src\cubeb_utils.cpp" />
|
|
|
|
|
<ClCompile Include="src\cubeb_wasapi.cpp" />
|
2024-03-21 09:54:35 +00:00
|
|
|
|
<ClCompile Include="src\cubeb_winmm.c">
|
|
|
|
|
<ExcludedFromBuild Condition="'$(Platform)'=='ARM64'">true</ExcludedFromBuild>
|
|
|
|
|
</ClCompile>
|
2022-09-29 12:49:50 +00:00
|
|
|
|
<ClCompile Include="subprojects\speex\resample.c" />
|
2021-09-26 06:35:15 +00:00
|
|
|
|
</ItemGroup>
|
2023-11-24 12:21:44 +00:00
|
|
|
|
<ItemDefinitionGroup>
|
|
|
|
|
<Lib>
|
|
|
|
|
<AdditionalDependencies Condition="'$(Platform)'!='ARM64'">ksuser.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
|
|
|
</Lib>
|
|
|
|
|
</ItemDefinitionGroup>
|
2021-09-26 06:35:15 +00:00
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
|
|
|
<ImportGroup Label="ExtensionTargets" />
|
|
|
|
|
</Project>
|