added the readme
This commit is contained in:
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Arch>x86</Arch>
|
||||
<Arch Condition="'$(Platform)'=='x64'">x64</Arch>
|
||||
<Arch Condition="'$(Platform)'=='ARM64'">ARM64</Arch>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{30AC8E0A-4195-49B0-952B-D5474CE6FE30}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalLibraryDirectories>..\..\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\3d.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Arch>x86</Arch>
|
||||
<Arch Condition="'$(Platform)'=='x64'">x64</Arch>
|
||||
<Arch Condition="'$(Platform)'=='ARM64'">ARM64</Arch>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{FC49B503-C66E-48BA-A0C4-48EC5A3566F5}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalLibraryDirectories>..\..\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\asyncio.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Arch>x86</Arch>
|
||||
<Arch Condition="'$(Platform)'=='x64'">x64</Arch>
|
||||
<Arch Condition="'$(Platform)'=='ARM64'">ARM64</Arch>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{60C14B8A-9B03-4C7D-8897-21A1F7B30EBF}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalLibraryDirectories>..\..\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\channel_groups.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Arch>x86</Arch>
|
||||
<Arch Condition="'$(Platform)'=='x64'">x64</Arch>
|
||||
<Arch Condition="'$(Platform)'=='ARM64'">ARM64</Arch>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{6B8D7510-68F8-4563-B717-DC5564BDC838}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalLibraryDirectories>..\..\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\convolution_reverb.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Arch>x86</Arch>
|
||||
<Arch Condition="'$(Platform)'=='x64'">x64</Arch>
|
||||
<Arch Condition="'$(Platform)'=='ARM64'">ARM64</Arch>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{73621A08-B29F-4B69-82FD-30A60F97CF8C}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalLibraryDirectories>..\..\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\dsp_custom.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Arch>x86</Arch>
|
||||
<Arch Condition="'$(Platform)'=='x64'">x64</Arch>
|
||||
<Arch Condition="'$(Platform)'=='ARM64'">ARM64</Arch>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{8C2A2903-4326-4E80-B511-1F6D130D48A7}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalLibraryDirectories>..\..\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\dsp_effect_per_speaker.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Arch>x86</Arch>
|
||||
<Arch Condition="'$(Platform)'=='x64'">x64</Arch>
|
||||
<Arch Condition="'$(Platform)'=='ARM64'">ARM64</Arch>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{BADDC3B7-41EE-489C-A539-63D604B65ABA}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalLibraryDirectories>..\..\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\dsp_inspector.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Arch>x86</Arch>
|
||||
<Arch Condition="'$(Platform)'=='x64'">x64</Arch>
|
||||
<Arch Condition="'$(Platform)'=='ARM64'">ARM64</Arch>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{7B9811CE-71EA-4D23-A568-DE5CE4CAB874}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalLibraryDirectories>..\..\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\effects.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,538 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||
# Visual Studio 15
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "3d", "3d.vcxproj", "{30AC8E0A-4195-49B0-952B-D5474CE6FE30}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "asyncio", "asyncio.vcxproj", "{FC49B503-C66E-48BA-A0C4-48EC5A3566F5}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "channel_groups", "channel_groups.vcxproj", "{60C14B8A-9B03-4C7D-8897-21A1F7B30EBF}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "convolution_reverb", "convolution_reverb.vcxproj", "{6B8D7510-68F8-4563-B717-DC5564BDC838}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dsp_custom", "dsp_custom.vcxproj", "{73621A08-B29F-4B69-82FD-30A60F97CF8C}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dsp_effect_per_speaker", "dsp_effect_per_speaker.vcxproj", "{8C2A2903-4326-4E80-B511-1F6D130D48A7}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dsp_inspector", "dsp_inspector.vcxproj", "{BADDC3B7-41EE-489C-A539-63D604B65ABA}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "effects", "effects.vcxproj", "{7B9811CE-71EA-4D23-A568-DE5CE4CAB874}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gapless_playback", "gapless_playback.vcxproj", "{2A310F24-BF68-40A0-80DB-151A2C2DD19E}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "generate_tone", "generate_tone.vcxproj", "{2E9195B6-781C-4639-A89E-5518DBFF9B4B}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "granular_synth", "granular_synth.vcxproj", "{CD76FEC4-A143-425F-8C9C-148A4F8A75AB}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "load_from_memory", "load_from_memory.vcxproj", "{A4C690BA-86FE-4786-A373-B3DAADE8863A}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "multiple_speaker", "multiple_speaker.vcxproj", "{F12F3706-097B-48BB-B71C-92D7885543D9}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "multiple_system", "multiple_system.vcxproj", "{F55FABF2-4D21-4F66-A0DF-4A47CA5356FA}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "net_stream", "net_stream.vcxproj", "{B97E6091-EC38-4A34-964A-C903A1C6D254}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "play_sound", "play_sound.vcxproj", "{1823CB20-54DC-4F68-BDB4-0083B01D6326}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "play_stream", "play_stream.vcxproj", "{6BCA9E05-7327-4421-A5E6-82751ECA6380}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "record", "record.vcxproj", "{18D60FC0-7F72-45E0-9244-4A8F23DB4728}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "record_enumeration", "record_enumeration.vcxproj", "{37C4A65D-768C-46EF-8BDE-23A5DB762328}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "user_created_sound", "user_created_sound.vcxproj", "{85EBD7F6-DF34-4815-83BE-5B0516B7F098}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fmod_codec_raw", "fmod_codec_raw.vcxproj", "{EFBD6DB6-3999-49A9-9397-FAD2FD863A87}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fmod_distance_filter", "fmod_distance_filter.vcxproj", "{89CF5705-9092-4C80-BAAE-D645855D8E3C}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fmod_gain", "fmod_gain.vcxproj", "{DA265C8D-292E-4622-8D66-AD911719607C}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fmod_noise", "fmod_noise.vcxproj", "{E4525091-8E93-4075-9FB6-C2AEAD70AC63}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fmod_rnbo", "fmod_rnbo.vcxproj", "{45445B97-5844-460E-8C8A-8C8A9BCA01BB}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "output_mp3", "output_mp3.vcxproj", "{546C5980-388B-4A05-ABE8-6DC366DBFA98}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Win32 = Debug|Win32
|
||||
Debug|x64 = Debug|x64
|
||||
Debug|ARM64 = Debug|ARM64
|
||||
Release|Win32 = Release|Win32
|
||||
Release|x64 = Release|x64
|
||||
Release|ARM64 = Release|ARM64
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{30AC8E0A-4195-49B0-952B-D5474CE6FE30}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{30AC8E0A-4195-49B0-952B-D5474CE6FE30}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{30AC8E0A-4195-49B0-952B-D5474CE6FE30}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{30AC8E0A-4195-49B0-952B-D5474CE6FE30}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{30AC8E0A-4195-49B0-952B-D5474CE6FE30}.Debug|x64.Build.0 = Debug|x64
|
||||
{30AC8E0A-4195-49B0-952B-D5474CE6FE30}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{30AC8E0A-4195-49B0-952B-D5474CE6FE30}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{30AC8E0A-4195-49B0-952B-D5474CE6FE30}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{30AC8E0A-4195-49B0-952B-D5474CE6FE30}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{30AC8E0A-4195-49B0-952B-D5474CE6FE30}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{30AC8E0A-4195-49B0-952B-D5474CE6FE30}.Release|Win32.Build.0 = Release|Win32
|
||||
{30AC8E0A-4195-49B0-952B-D5474CE6FE30}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{30AC8E0A-4195-49B0-952B-D5474CE6FE30}.Release|x64.ActiveCfg = Release|x64
|
||||
{30AC8E0A-4195-49B0-952B-D5474CE6FE30}.Release|x64.Build.0 = Release|x64
|
||||
{30AC8E0A-4195-49B0-952B-D5474CE6FE30}.Release|x64.Deploy.0 = Release|x64
|
||||
{30AC8E0A-4195-49B0-952B-D5474CE6FE30}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{30AC8E0A-4195-49B0-952B-D5474CE6FE30}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{30AC8E0A-4195-49B0-952B-D5474CE6FE30}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{FC49B503-C66E-48BA-A0C4-48EC5A3566F5}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{FC49B503-C66E-48BA-A0C4-48EC5A3566F5}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{FC49B503-C66E-48BA-A0C4-48EC5A3566F5}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{FC49B503-C66E-48BA-A0C4-48EC5A3566F5}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{FC49B503-C66E-48BA-A0C4-48EC5A3566F5}.Debug|x64.Build.0 = Debug|x64
|
||||
{FC49B503-C66E-48BA-A0C4-48EC5A3566F5}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{FC49B503-C66E-48BA-A0C4-48EC5A3566F5}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{FC49B503-C66E-48BA-A0C4-48EC5A3566F5}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{FC49B503-C66E-48BA-A0C4-48EC5A3566F5}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{FC49B503-C66E-48BA-A0C4-48EC5A3566F5}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{FC49B503-C66E-48BA-A0C4-48EC5A3566F5}.Release|Win32.Build.0 = Release|Win32
|
||||
{FC49B503-C66E-48BA-A0C4-48EC5A3566F5}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{FC49B503-C66E-48BA-A0C4-48EC5A3566F5}.Release|x64.ActiveCfg = Release|x64
|
||||
{FC49B503-C66E-48BA-A0C4-48EC5A3566F5}.Release|x64.Build.0 = Release|x64
|
||||
{FC49B503-C66E-48BA-A0C4-48EC5A3566F5}.Release|x64.Deploy.0 = Release|x64
|
||||
{FC49B503-C66E-48BA-A0C4-48EC5A3566F5}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{FC49B503-C66E-48BA-A0C4-48EC5A3566F5}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{FC49B503-C66E-48BA-A0C4-48EC5A3566F5}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{60C14B8A-9B03-4C7D-8897-21A1F7B30EBF}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{60C14B8A-9B03-4C7D-8897-21A1F7B30EBF}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{60C14B8A-9B03-4C7D-8897-21A1F7B30EBF}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{60C14B8A-9B03-4C7D-8897-21A1F7B30EBF}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{60C14B8A-9B03-4C7D-8897-21A1F7B30EBF}.Debug|x64.Build.0 = Debug|x64
|
||||
{60C14B8A-9B03-4C7D-8897-21A1F7B30EBF}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{60C14B8A-9B03-4C7D-8897-21A1F7B30EBF}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{60C14B8A-9B03-4C7D-8897-21A1F7B30EBF}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{60C14B8A-9B03-4C7D-8897-21A1F7B30EBF}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{60C14B8A-9B03-4C7D-8897-21A1F7B30EBF}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{60C14B8A-9B03-4C7D-8897-21A1F7B30EBF}.Release|Win32.Build.0 = Release|Win32
|
||||
{60C14B8A-9B03-4C7D-8897-21A1F7B30EBF}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{60C14B8A-9B03-4C7D-8897-21A1F7B30EBF}.Release|x64.ActiveCfg = Release|x64
|
||||
{60C14B8A-9B03-4C7D-8897-21A1F7B30EBF}.Release|x64.Build.0 = Release|x64
|
||||
{60C14B8A-9B03-4C7D-8897-21A1F7B30EBF}.Release|x64.Deploy.0 = Release|x64
|
||||
{60C14B8A-9B03-4C7D-8897-21A1F7B30EBF}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{60C14B8A-9B03-4C7D-8897-21A1F7B30EBF}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{60C14B8A-9B03-4C7D-8897-21A1F7B30EBF}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{6B8D7510-68F8-4563-B717-DC5564BDC838}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{6B8D7510-68F8-4563-B717-DC5564BDC838}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{6B8D7510-68F8-4563-B717-DC5564BDC838}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{6B8D7510-68F8-4563-B717-DC5564BDC838}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{6B8D7510-68F8-4563-B717-DC5564BDC838}.Debug|x64.Build.0 = Debug|x64
|
||||
{6B8D7510-68F8-4563-B717-DC5564BDC838}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{6B8D7510-68F8-4563-B717-DC5564BDC838}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{6B8D7510-68F8-4563-B717-DC5564BDC838}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{6B8D7510-68F8-4563-B717-DC5564BDC838}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{6B8D7510-68F8-4563-B717-DC5564BDC838}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{6B8D7510-68F8-4563-B717-DC5564BDC838}.Release|Win32.Build.0 = Release|Win32
|
||||
{6B8D7510-68F8-4563-B717-DC5564BDC838}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{6B8D7510-68F8-4563-B717-DC5564BDC838}.Release|x64.ActiveCfg = Release|x64
|
||||
{6B8D7510-68F8-4563-B717-DC5564BDC838}.Release|x64.Build.0 = Release|x64
|
||||
{6B8D7510-68F8-4563-B717-DC5564BDC838}.Release|x64.Deploy.0 = Release|x64
|
||||
{6B8D7510-68F8-4563-B717-DC5564BDC838}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{6B8D7510-68F8-4563-B717-DC5564BDC838}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{6B8D7510-68F8-4563-B717-DC5564BDC838}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{73621A08-B29F-4B69-82FD-30A60F97CF8C}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{73621A08-B29F-4B69-82FD-30A60F97CF8C}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{73621A08-B29F-4B69-82FD-30A60F97CF8C}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{73621A08-B29F-4B69-82FD-30A60F97CF8C}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{73621A08-B29F-4B69-82FD-30A60F97CF8C}.Debug|x64.Build.0 = Debug|x64
|
||||
{73621A08-B29F-4B69-82FD-30A60F97CF8C}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{73621A08-B29F-4B69-82FD-30A60F97CF8C}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{73621A08-B29F-4B69-82FD-30A60F97CF8C}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{73621A08-B29F-4B69-82FD-30A60F97CF8C}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{73621A08-B29F-4B69-82FD-30A60F97CF8C}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{73621A08-B29F-4B69-82FD-30A60F97CF8C}.Release|Win32.Build.0 = Release|Win32
|
||||
{73621A08-B29F-4B69-82FD-30A60F97CF8C}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{73621A08-B29F-4B69-82FD-30A60F97CF8C}.Release|x64.ActiveCfg = Release|x64
|
||||
{73621A08-B29F-4B69-82FD-30A60F97CF8C}.Release|x64.Build.0 = Release|x64
|
||||
{73621A08-B29F-4B69-82FD-30A60F97CF8C}.Release|x64.Deploy.0 = Release|x64
|
||||
{73621A08-B29F-4B69-82FD-30A60F97CF8C}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{73621A08-B29F-4B69-82FD-30A60F97CF8C}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{73621A08-B29F-4B69-82FD-30A60F97CF8C}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{8C2A2903-4326-4E80-B511-1F6D130D48A7}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{8C2A2903-4326-4E80-B511-1F6D130D48A7}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{8C2A2903-4326-4E80-B511-1F6D130D48A7}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{8C2A2903-4326-4E80-B511-1F6D130D48A7}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{8C2A2903-4326-4E80-B511-1F6D130D48A7}.Debug|x64.Build.0 = Debug|x64
|
||||
{8C2A2903-4326-4E80-B511-1F6D130D48A7}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{8C2A2903-4326-4E80-B511-1F6D130D48A7}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{8C2A2903-4326-4E80-B511-1F6D130D48A7}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{8C2A2903-4326-4E80-B511-1F6D130D48A7}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{8C2A2903-4326-4E80-B511-1F6D130D48A7}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{8C2A2903-4326-4E80-B511-1F6D130D48A7}.Release|Win32.Build.0 = Release|Win32
|
||||
{8C2A2903-4326-4E80-B511-1F6D130D48A7}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{8C2A2903-4326-4E80-B511-1F6D130D48A7}.Release|x64.ActiveCfg = Release|x64
|
||||
{8C2A2903-4326-4E80-B511-1F6D130D48A7}.Release|x64.Build.0 = Release|x64
|
||||
{8C2A2903-4326-4E80-B511-1F6D130D48A7}.Release|x64.Deploy.0 = Release|x64
|
||||
{8C2A2903-4326-4E80-B511-1F6D130D48A7}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{8C2A2903-4326-4E80-B511-1F6D130D48A7}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{8C2A2903-4326-4E80-B511-1F6D130D48A7}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{BADDC3B7-41EE-489C-A539-63D604B65ABA}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{BADDC3B7-41EE-489C-A539-63D604B65ABA}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{BADDC3B7-41EE-489C-A539-63D604B65ABA}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{BADDC3B7-41EE-489C-A539-63D604B65ABA}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{BADDC3B7-41EE-489C-A539-63D604B65ABA}.Debug|x64.Build.0 = Debug|x64
|
||||
{BADDC3B7-41EE-489C-A539-63D604B65ABA}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{BADDC3B7-41EE-489C-A539-63D604B65ABA}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{BADDC3B7-41EE-489C-A539-63D604B65ABA}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{BADDC3B7-41EE-489C-A539-63D604B65ABA}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{BADDC3B7-41EE-489C-A539-63D604B65ABA}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{BADDC3B7-41EE-489C-A539-63D604B65ABA}.Release|Win32.Build.0 = Release|Win32
|
||||
{BADDC3B7-41EE-489C-A539-63D604B65ABA}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{BADDC3B7-41EE-489C-A539-63D604B65ABA}.Release|x64.ActiveCfg = Release|x64
|
||||
{BADDC3B7-41EE-489C-A539-63D604B65ABA}.Release|x64.Build.0 = Release|x64
|
||||
{BADDC3B7-41EE-489C-A539-63D604B65ABA}.Release|x64.Deploy.0 = Release|x64
|
||||
{BADDC3B7-41EE-489C-A539-63D604B65ABA}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{BADDC3B7-41EE-489C-A539-63D604B65ABA}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{BADDC3B7-41EE-489C-A539-63D604B65ABA}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{7B9811CE-71EA-4D23-A568-DE5CE4CAB874}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{7B9811CE-71EA-4D23-A568-DE5CE4CAB874}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{7B9811CE-71EA-4D23-A568-DE5CE4CAB874}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{7B9811CE-71EA-4D23-A568-DE5CE4CAB874}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{7B9811CE-71EA-4D23-A568-DE5CE4CAB874}.Debug|x64.Build.0 = Debug|x64
|
||||
{7B9811CE-71EA-4D23-A568-DE5CE4CAB874}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{7B9811CE-71EA-4D23-A568-DE5CE4CAB874}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{7B9811CE-71EA-4D23-A568-DE5CE4CAB874}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{7B9811CE-71EA-4D23-A568-DE5CE4CAB874}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{7B9811CE-71EA-4D23-A568-DE5CE4CAB874}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{7B9811CE-71EA-4D23-A568-DE5CE4CAB874}.Release|Win32.Build.0 = Release|Win32
|
||||
{7B9811CE-71EA-4D23-A568-DE5CE4CAB874}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{7B9811CE-71EA-4D23-A568-DE5CE4CAB874}.Release|x64.ActiveCfg = Release|x64
|
||||
{7B9811CE-71EA-4D23-A568-DE5CE4CAB874}.Release|x64.Build.0 = Release|x64
|
||||
{7B9811CE-71EA-4D23-A568-DE5CE4CAB874}.Release|x64.Deploy.0 = Release|x64
|
||||
{7B9811CE-71EA-4D23-A568-DE5CE4CAB874}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{7B9811CE-71EA-4D23-A568-DE5CE4CAB874}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{7B9811CE-71EA-4D23-A568-DE5CE4CAB874}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{2A310F24-BF68-40A0-80DB-151A2C2DD19E}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{2A310F24-BF68-40A0-80DB-151A2C2DD19E}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{2A310F24-BF68-40A0-80DB-151A2C2DD19E}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{2A310F24-BF68-40A0-80DB-151A2C2DD19E}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{2A310F24-BF68-40A0-80DB-151A2C2DD19E}.Debug|x64.Build.0 = Debug|x64
|
||||
{2A310F24-BF68-40A0-80DB-151A2C2DD19E}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{2A310F24-BF68-40A0-80DB-151A2C2DD19E}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{2A310F24-BF68-40A0-80DB-151A2C2DD19E}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{2A310F24-BF68-40A0-80DB-151A2C2DD19E}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{2A310F24-BF68-40A0-80DB-151A2C2DD19E}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{2A310F24-BF68-40A0-80DB-151A2C2DD19E}.Release|Win32.Build.0 = Release|Win32
|
||||
{2A310F24-BF68-40A0-80DB-151A2C2DD19E}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{2A310F24-BF68-40A0-80DB-151A2C2DD19E}.Release|x64.ActiveCfg = Release|x64
|
||||
{2A310F24-BF68-40A0-80DB-151A2C2DD19E}.Release|x64.Build.0 = Release|x64
|
||||
{2A310F24-BF68-40A0-80DB-151A2C2DD19E}.Release|x64.Deploy.0 = Release|x64
|
||||
{2A310F24-BF68-40A0-80DB-151A2C2DD19E}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{2A310F24-BF68-40A0-80DB-151A2C2DD19E}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{2A310F24-BF68-40A0-80DB-151A2C2DD19E}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{2E9195B6-781C-4639-A89E-5518DBFF9B4B}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{2E9195B6-781C-4639-A89E-5518DBFF9B4B}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{2E9195B6-781C-4639-A89E-5518DBFF9B4B}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{2E9195B6-781C-4639-A89E-5518DBFF9B4B}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{2E9195B6-781C-4639-A89E-5518DBFF9B4B}.Debug|x64.Build.0 = Debug|x64
|
||||
{2E9195B6-781C-4639-A89E-5518DBFF9B4B}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{2E9195B6-781C-4639-A89E-5518DBFF9B4B}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{2E9195B6-781C-4639-A89E-5518DBFF9B4B}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{2E9195B6-781C-4639-A89E-5518DBFF9B4B}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{2E9195B6-781C-4639-A89E-5518DBFF9B4B}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{2E9195B6-781C-4639-A89E-5518DBFF9B4B}.Release|Win32.Build.0 = Release|Win32
|
||||
{2E9195B6-781C-4639-A89E-5518DBFF9B4B}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{2E9195B6-781C-4639-A89E-5518DBFF9B4B}.Release|x64.ActiveCfg = Release|x64
|
||||
{2E9195B6-781C-4639-A89E-5518DBFF9B4B}.Release|x64.Build.0 = Release|x64
|
||||
{2E9195B6-781C-4639-A89E-5518DBFF9B4B}.Release|x64.Deploy.0 = Release|x64
|
||||
{2E9195B6-781C-4639-A89E-5518DBFF9B4B}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{2E9195B6-781C-4639-A89E-5518DBFF9B4B}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{2E9195B6-781C-4639-A89E-5518DBFF9B4B}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{CD76FEC4-A143-425F-8C9C-148A4F8A75AB}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{CD76FEC4-A143-425F-8C9C-148A4F8A75AB}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{CD76FEC4-A143-425F-8C9C-148A4F8A75AB}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{CD76FEC4-A143-425F-8C9C-148A4F8A75AB}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{CD76FEC4-A143-425F-8C9C-148A4F8A75AB}.Debug|x64.Build.0 = Debug|x64
|
||||
{CD76FEC4-A143-425F-8C9C-148A4F8A75AB}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{CD76FEC4-A143-425F-8C9C-148A4F8A75AB}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{CD76FEC4-A143-425F-8C9C-148A4F8A75AB}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{CD76FEC4-A143-425F-8C9C-148A4F8A75AB}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{CD76FEC4-A143-425F-8C9C-148A4F8A75AB}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{CD76FEC4-A143-425F-8C9C-148A4F8A75AB}.Release|Win32.Build.0 = Release|Win32
|
||||
{CD76FEC4-A143-425F-8C9C-148A4F8A75AB}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{CD76FEC4-A143-425F-8C9C-148A4F8A75AB}.Release|x64.ActiveCfg = Release|x64
|
||||
{CD76FEC4-A143-425F-8C9C-148A4F8A75AB}.Release|x64.Build.0 = Release|x64
|
||||
{CD76FEC4-A143-425F-8C9C-148A4F8A75AB}.Release|x64.Deploy.0 = Release|x64
|
||||
{CD76FEC4-A143-425F-8C9C-148A4F8A75AB}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{CD76FEC4-A143-425F-8C9C-148A4F8A75AB}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{CD76FEC4-A143-425F-8C9C-148A4F8A75AB}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{A4C690BA-86FE-4786-A373-B3DAADE8863A}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{A4C690BA-86FE-4786-A373-B3DAADE8863A}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{A4C690BA-86FE-4786-A373-B3DAADE8863A}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{A4C690BA-86FE-4786-A373-B3DAADE8863A}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{A4C690BA-86FE-4786-A373-B3DAADE8863A}.Debug|x64.Build.0 = Debug|x64
|
||||
{A4C690BA-86FE-4786-A373-B3DAADE8863A}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{A4C690BA-86FE-4786-A373-B3DAADE8863A}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{A4C690BA-86FE-4786-A373-B3DAADE8863A}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{A4C690BA-86FE-4786-A373-B3DAADE8863A}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{A4C690BA-86FE-4786-A373-B3DAADE8863A}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{A4C690BA-86FE-4786-A373-B3DAADE8863A}.Release|Win32.Build.0 = Release|Win32
|
||||
{A4C690BA-86FE-4786-A373-B3DAADE8863A}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{A4C690BA-86FE-4786-A373-B3DAADE8863A}.Release|x64.ActiveCfg = Release|x64
|
||||
{A4C690BA-86FE-4786-A373-B3DAADE8863A}.Release|x64.Build.0 = Release|x64
|
||||
{A4C690BA-86FE-4786-A373-B3DAADE8863A}.Release|x64.Deploy.0 = Release|x64
|
||||
{A4C690BA-86FE-4786-A373-B3DAADE8863A}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{A4C690BA-86FE-4786-A373-B3DAADE8863A}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{A4C690BA-86FE-4786-A373-B3DAADE8863A}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{F12F3706-097B-48BB-B71C-92D7885543D9}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{F12F3706-097B-48BB-B71C-92D7885543D9}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{F12F3706-097B-48BB-B71C-92D7885543D9}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{F12F3706-097B-48BB-B71C-92D7885543D9}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{F12F3706-097B-48BB-B71C-92D7885543D9}.Debug|x64.Build.0 = Debug|x64
|
||||
{F12F3706-097B-48BB-B71C-92D7885543D9}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{F12F3706-097B-48BB-B71C-92D7885543D9}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{F12F3706-097B-48BB-B71C-92D7885543D9}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{F12F3706-097B-48BB-B71C-92D7885543D9}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{F12F3706-097B-48BB-B71C-92D7885543D9}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{F12F3706-097B-48BB-B71C-92D7885543D9}.Release|Win32.Build.0 = Release|Win32
|
||||
{F12F3706-097B-48BB-B71C-92D7885543D9}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{F12F3706-097B-48BB-B71C-92D7885543D9}.Release|x64.ActiveCfg = Release|x64
|
||||
{F12F3706-097B-48BB-B71C-92D7885543D9}.Release|x64.Build.0 = Release|x64
|
||||
{F12F3706-097B-48BB-B71C-92D7885543D9}.Release|x64.Deploy.0 = Release|x64
|
||||
{F12F3706-097B-48BB-B71C-92D7885543D9}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{F12F3706-097B-48BB-B71C-92D7885543D9}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{F12F3706-097B-48BB-B71C-92D7885543D9}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{F55FABF2-4D21-4F66-A0DF-4A47CA5356FA}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{F55FABF2-4D21-4F66-A0DF-4A47CA5356FA}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{F55FABF2-4D21-4F66-A0DF-4A47CA5356FA}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{F55FABF2-4D21-4F66-A0DF-4A47CA5356FA}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{F55FABF2-4D21-4F66-A0DF-4A47CA5356FA}.Debug|x64.Build.0 = Debug|x64
|
||||
{F55FABF2-4D21-4F66-A0DF-4A47CA5356FA}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{F55FABF2-4D21-4F66-A0DF-4A47CA5356FA}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{F55FABF2-4D21-4F66-A0DF-4A47CA5356FA}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{F55FABF2-4D21-4F66-A0DF-4A47CA5356FA}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{F55FABF2-4D21-4F66-A0DF-4A47CA5356FA}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{F55FABF2-4D21-4F66-A0DF-4A47CA5356FA}.Release|Win32.Build.0 = Release|Win32
|
||||
{F55FABF2-4D21-4F66-A0DF-4A47CA5356FA}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{F55FABF2-4D21-4F66-A0DF-4A47CA5356FA}.Release|x64.ActiveCfg = Release|x64
|
||||
{F55FABF2-4D21-4F66-A0DF-4A47CA5356FA}.Release|x64.Build.0 = Release|x64
|
||||
{F55FABF2-4D21-4F66-A0DF-4A47CA5356FA}.Release|x64.Deploy.0 = Release|x64
|
||||
{F55FABF2-4D21-4F66-A0DF-4A47CA5356FA}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{F55FABF2-4D21-4F66-A0DF-4A47CA5356FA}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{F55FABF2-4D21-4F66-A0DF-4A47CA5356FA}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{B97E6091-EC38-4A34-964A-C903A1C6D254}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{B97E6091-EC38-4A34-964A-C903A1C6D254}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{B97E6091-EC38-4A34-964A-C903A1C6D254}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{B97E6091-EC38-4A34-964A-C903A1C6D254}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{B97E6091-EC38-4A34-964A-C903A1C6D254}.Debug|x64.Build.0 = Debug|x64
|
||||
{B97E6091-EC38-4A34-964A-C903A1C6D254}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{B97E6091-EC38-4A34-964A-C903A1C6D254}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{B97E6091-EC38-4A34-964A-C903A1C6D254}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{B97E6091-EC38-4A34-964A-C903A1C6D254}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{B97E6091-EC38-4A34-964A-C903A1C6D254}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{B97E6091-EC38-4A34-964A-C903A1C6D254}.Release|Win32.Build.0 = Release|Win32
|
||||
{B97E6091-EC38-4A34-964A-C903A1C6D254}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{B97E6091-EC38-4A34-964A-C903A1C6D254}.Release|x64.ActiveCfg = Release|x64
|
||||
{B97E6091-EC38-4A34-964A-C903A1C6D254}.Release|x64.Build.0 = Release|x64
|
||||
{B97E6091-EC38-4A34-964A-C903A1C6D254}.Release|x64.Deploy.0 = Release|x64
|
||||
{B97E6091-EC38-4A34-964A-C903A1C6D254}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{B97E6091-EC38-4A34-964A-C903A1C6D254}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{B97E6091-EC38-4A34-964A-C903A1C6D254}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{1823CB20-54DC-4F68-BDB4-0083B01D6326}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{1823CB20-54DC-4F68-BDB4-0083B01D6326}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{1823CB20-54DC-4F68-BDB4-0083B01D6326}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{1823CB20-54DC-4F68-BDB4-0083B01D6326}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{1823CB20-54DC-4F68-BDB4-0083B01D6326}.Debug|x64.Build.0 = Debug|x64
|
||||
{1823CB20-54DC-4F68-BDB4-0083B01D6326}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{1823CB20-54DC-4F68-BDB4-0083B01D6326}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{1823CB20-54DC-4F68-BDB4-0083B01D6326}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{1823CB20-54DC-4F68-BDB4-0083B01D6326}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{1823CB20-54DC-4F68-BDB4-0083B01D6326}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{1823CB20-54DC-4F68-BDB4-0083B01D6326}.Release|Win32.Build.0 = Release|Win32
|
||||
{1823CB20-54DC-4F68-BDB4-0083B01D6326}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{1823CB20-54DC-4F68-BDB4-0083B01D6326}.Release|x64.ActiveCfg = Release|x64
|
||||
{1823CB20-54DC-4F68-BDB4-0083B01D6326}.Release|x64.Build.0 = Release|x64
|
||||
{1823CB20-54DC-4F68-BDB4-0083B01D6326}.Release|x64.Deploy.0 = Release|x64
|
||||
{1823CB20-54DC-4F68-BDB4-0083B01D6326}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{1823CB20-54DC-4F68-BDB4-0083B01D6326}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{1823CB20-54DC-4F68-BDB4-0083B01D6326}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{6BCA9E05-7327-4421-A5E6-82751ECA6380}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{6BCA9E05-7327-4421-A5E6-82751ECA6380}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{6BCA9E05-7327-4421-A5E6-82751ECA6380}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{6BCA9E05-7327-4421-A5E6-82751ECA6380}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{6BCA9E05-7327-4421-A5E6-82751ECA6380}.Debug|x64.Build.0 = Debug|x64
|
||||
{6BCA9E05-7327-4421-A5E6-82751ECA6380}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{6BCA9E05-7327-4421-A5E6-82751ECA6380}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{6BCA9E05-7327-4421-A5E6-82751ECA6380}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{6BCA9E05-7327-4421-A5E6-82751ECA6380}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{6BCA9E05-7327-4421-A5E6-82751ECA6380}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{6BCA9E05-7327-4421-A5E6-82751ECA6380}.Release|Win32.Build.0 = Release|Win32
|
||||
{6BCA9E05-7327-4421-A5E6-82751ECA6380}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{6BCA9E05-7327-4421-A5E6-82751ECA6380}.Release|x64.ActiveCfg = Release|x64
|
||||
{6BCA9E05-7327-4421-A5E6-82751ECA6380}.Release|x64.Build.0 = Release|x64
|
||||
{6BCA9E05-7327-4421-A5E6-82751ECA6380}.Release|x64.Deploy.0 = Release|x64
|
||||
{6BCA9E05-7327-4421-A5E6-82751ECA6380}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{6BCA9E05-7327-4421-A5E6-82751ECA6380}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{6BCA9E05-7327-4421-A5E6-82751ECA6380}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{18D60FC0-7F72-45E0-9244-4A8F23DB4728}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{18D60FC0-7F72-45E0-9244-4A8F23DB4728}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{18D60FC0-7F72-45E0-9244-4A8F23DB4728}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{18D60FC0-7F72-45E0-9244-4A8F23DB4728}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{18D60FC0-7F72-45E0-9244-4A8F23DB4728}.Debug|x64.Build.0 = Debug|x64
|
||||
{18D60FC0-7F72-45E0-9244-4A8F23DB4728}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{18D60FC0-7F72-45E0-9244-4A8F23DB4728}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{18D60FC0-7F72-45E0-9244-4A8F23DB4728}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{18D60FC0-7F72-45E0-9244-4A8F23DB4728}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{18D60FC0-7F72-45E0-9244-4A8F23DB4728}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{18D60FC0-7F72-45E0-9244-4A8F23DB4728}.Release|Win32.Build.0 = Release|Win32
|
||||
{18D60FC0-7F72-45E0-9244-4A8F23DB4728}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{18D60FC0-7F72-45E0-9244-4A8F23DB4728}.Release|x64.ActiveCfg = Release|x64
|
||||
{18D60FC0-7F72-45E0-9244-4A8F23DB4728}.Release|x64.Build.0 = Release|x64
|
||||
{18D60FC0-7F72-45E0-9244-4A8F23DB4728}.Release|x64.Deploy.0 = Release|x64
|
||||
{18D60FC0-7F72-45E0-9244-4A8F23DB4728}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{18D60FC0-7F72-45E0-9244-4A8F23DB4728}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{18D60FC0-7F72-45E0-9244-4A8F23DB4728}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{37C4A65D-768C-46EF-8BDE-23A5DB762328}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{37C4A65D-768C-46EF-8BDE-23A5DB762328}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{37C4A65D-768C-46EF-8BDE-23A5DB762328}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{37C4A65D-768C-46EF-8BDE-23A5DB762328}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{37C4A65D-768C-46EF-8BDE-23A5DB762328}.Debug|x64.Build.0 = Debug|x64
|
||||
{37C4A65D-768C-46EF-8BDE-23A5DB762328}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{37C4A65D-768C-46EF-8BDE-23A5DB762328}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{37C4A65D-768C-46EF-8BDE-23A5DB762328}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{37C4A65D-768C-46EF-8BDE-23A5DB762328}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{37C4A65D-768C-46EF-8BDE-23A5DB762328}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{37C4A65D-768C-46EF-8BDE-23A5DB762328}.Release|Win32.Build.0 = Release|Win32
|
||||
{37C4A65D-768C-46EF-8BDE-23A5DB762328}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{37C4A65D-768C-46EF-8BDE-23A5DB762328}.Release|x64.ActiveCfg = Release|x64
|
||||
{37C4A65D-768C-46EF-8BDE-23A5DB762328}.Release|x64.Build.0 = Release|x64
|
||||
{37C4A65D-768C-46EF-8BDE-23A5DB762328}.Release|x64.Deploy.0 = Release|x64
|
||||
{37C4A65D-768C-46EF-8BDE-23A5DB762328}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{37C4A65D-768C-46EF-8BDE-23A5DB762328}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{37C4A65D-768C-46EF-8BDE-23A5DB762328}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{85EBD7F6-DF34-4815-83BE-5B0516B7F098}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{85EBD7F6-DF34-4815-83BE-5B0516B7F098}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{85EBD7F6-DF34-4815-83BE-5B0516B7F098}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{85EBD7F6-DF34-4815-83BE-5B0516B7F098}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{85EBD7F6-DF34-4815-83BE-5B0516B7F098}.Debug|x64.Build.0 = Debug|x64
|
||||
{85EBD7F6-DF34-4815-83BE-5B0516B7F098}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{85EBD7F6-DF34-4815-83BE-5B0516B7F098}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{85EBD7F6-DF34-4815-83BE-5B0516B7F098}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{85EBD7F6-DF34-4815-83BE-5B0516B7F098}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{85EBD7F6-DF34-4815-83BE-5B0516B7F098}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{85EBD7F6-DF34-4815-83BE-5B0516B7F098}.Release|Win32.Build.0 = Release|Win32
|
||||
{85EBD7F6-DF34-4815-83BE-5B0516B7F098}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{85EBD7F6-DF34-4815-83BE-5B0516B7F098}.Release|x64.ActiveCfg = Release|x64
|
||||
{85EBD7F6-DF34-4815-83BE-5B0516B7F098}.Release|x64.Build.0 = Release|x64
|
||||
{85EBD7F6-DF34-4815-83BE-5B0516B7F098}.Release|x64.Deploy.0 = Release|x64
|
||||
{85EBD7F6-DF34-4815-83BE-5B0516B7F098}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{85EBD7F6-DF34-4815-83BE-5B0516B7F098}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{85EBD7F6-DF34-4815-83BE-5B0516B7F098}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{EFBD6DB6-3999-49A9-9397-FAD2FD863A87}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{EFBD6DB6-3999-49A9-9397-FAD2FD863A87}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{EFBD6DB6-3999-49A9-9397-FAD2FD863A87}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{EFBD6DB6-3999-49A9-9397-FAD2FD863A87}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{EFBD6DB6-3999-49A9-9397-FAD2FD863A87}.Debug|x64.Build.0 = Debug|x64
|
||||
{EFBD6DB6-3999-49A9-9397-FAD2FD863A87}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{EFBD6DB6-3999-49A9-9397-FAD2FD863A87}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{EFBD6DB6-3999-49A9-9397-FAD2FD863A87}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{EFBD6DB6-3999-49A9-9397-FAD2FD863A87}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{EFBD6DB6-3999-49A9-9397-FAD2FD863A87}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{EFBD6DB6-3999-49A9-9397-FAD2FD863A87}.Release|Win32.Build.0 = Release|Win32
|
||||
{EFBD6DB6-3999-49A9-9397-FAD2FD863A87}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{EFBD6DB6-3999-49A9-9397-FAD2FD863A87}.Release|x64.ActiveCfg = Release|x64
|
||||
{EFBD6DB6-3999-49A9-9397-FAD2FD863A87}.Release|x64.Build.0 = Release|x64
|
||||
{EFBD6DB6-3999-49A9-9397-FAD2FD863A87}.Release|x64.Deploy.0 = Release|x64
|
||||
{EFBD6DB6-3999-49A9-9397-FAD2FD863A87}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{EFBD6DB6-3999-49A9-9397-FAD2FD863A87}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{EFBD6DB6-3999-49A9-9397-FAD2FD863A87}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{89CF5705-9092-4C80-BAAE-D645855D8E3C}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{89CF5705-9092-4C80-BAAE-D645855D8E3C}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{89CF5705-9092-4C80-BAAE-D645855D8E3C}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{89CF5705-9092-4C80-BAAE-D645855D8E3C}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{89CF5705-9092-4C80-BAAE-D645855D8E3C}.Debug|x64.Build.0 = Debug|x64
|
||||
{89CF5705-9092-4C80-BAAE-D645855D8E3C}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{89CF5705-9092-4C80-BAAE-D645855D8E3C}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{89CF5705-9092-4C80-BAAE-D645855D8E3C}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{89CF5705-9092-4C80-BAAE-D645855D8E3C}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{89CF5705-9092-4C80-BAAE-D645855D8E3C}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{89CF5705-9092-4C80-BAAE-D645855D8E3C}.Release|Win32.Build.0 = Release|Win32
|
||||
{89CF5705-9092-4C80-BAAE-D645855D8E3C}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{89CF5705-9092-4C80-BAAE-D645855D8E3C}.Release|x64.ActiveCfg = Release|x64
|
||||
{89CF5705-9092-4C80-BAAE-D645855D8E3C}.Release|x64.Build.0 = Release|x64
|
||||
{89CF5705-9092-4C80-BAAE-D645855D8E3C}.Release|x64.Deploy.0 = Release|x64
|
||||
{89CF5705-9092-4C80-BAAE-D645855D8E3C}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{89CF5705-9092-4C80-BAAE-D645855D8E3C}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{89CF5705-9092-4C80-BAAE-D645855D8E3C}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{DA265C8D-292E-4622-8D66-AD911719607C}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{DA265C8D-292E-4622-8D66-AD911719607C}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{DA265C8D-292E-4622-8D66-AD911719607C}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{DA265C8D-292E-4622-8D66-AD911719607C}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{DA265C8D-292E-4622-8D66-AD911719607C}.Debug|x64.Build.0 = Debug|x64
|
||||
{DA265C8D-292E-4622-8D66-AD911719607C}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{DA265C8D-292E-4622-8D66-AD911719607C}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{DA265C8D-292E-4622-8D66-AD911719607C}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{DA265C8D-292E-4622-8D66-AD911719607C}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{DA265C8D-292E-4622-8D66-AD911719607C}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{DA265C8D-292E-4622-8D66-AD911719607C}.Release|Win32.Build.0 = Release|Win32
|
||||
{DA265C8D-292E-4622-8D66-AD911719607C}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{DA265C8D-292E-4622-8D66-AD911719607C}.Release|x64.ActiveCfg = Release|x64
|
||||
{DA265C8D-292E-4622-8D66-AD911719607C}.Release|x64.Build.0 = Release|x64
|
||||
{DA265C8D-292E-4622-8D66-AD911719607C}.Release|x64.Deploy.0 = Release|x64
|
||||
{DA265C8D-292E-4622-8D66-AD911719607C}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{DA265C8D-292E-4622-8D66-AD911719607C}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{DA265C8D-292E-4622-8D66-AD911719607C}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{E4525091-8E93-4075-9FB6-C2AEAD70AC63}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{E4525091-8E93-4075-9FB6-C2AEAD70AC63}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{E4525091-8E93-4075-9FB6-C2AEAD70AC63}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{E4525091-8E93-4075-9FB6-C2AEAD70AC63}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{E4525091-8E93-4075-9FB6-C2AEAD70AC63}.Debug|x64.Build.0 = Debug|x64
|
||||
{E4525091-8E93-4075-9FB6-C2AEAD70AC63}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{E4525091-8E93-4075-9FB6-C2AEAD70AC63}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{E4525091-8E93-4075-9FB6-C2AEAD70AC63}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{E4525091-8E93-4075-9FB6-C2AEAD70AC63}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{E4525091-8E93-4075-9FB6-C2AEAD70AC63}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{E4525091-8E93-4075-9FB6-C2AEAD70AC63}.Release|Win32.Build.0 = Release|Win32
|
||||
{E4525091-8E93-4075-9FB6-C2AEAD70AC63}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{E4525091-8E93-4075-9FB6-C2AEAD70AC63}.Release|x64.ActiveCfg = Release|x64
|
||||
{E4525091-8E93-4075-9FB6-C2AEAD70AC63}.Release|x64.Build.0 = Release|x64
|
||||
{E4525091-8E93-4075-9FB6-C2AEAD70AC63}.Release|x64.Deploy.0 = Release|x64
|
||||
{E4525091-8E93-4075-9FB6-C2AEAD70AC63}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{E4525091-8E93-4075-9FB6-C2AEAD70AC63}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{E4525091-8E93-4075-9FB6-C2AEAD70AC63}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{45445B97-5844-460E-8C8A-8C8A9BCA01BB}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{45445B97-5844-460E-8C8A-8C8A9BCA01BB}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{45445B97-5844-460E-8C8A-8C8A9BCA01BB}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{45445B97-5844-460E-8C8A-8C8A9BCA01BB}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{45445B97-5844-460E-8C8A-8C8A9BCA01BB}.Debug|x64.Build.0 = Debug|x64
|
||||
{45445B97-5844-460E-8C8A-8C8A9BCA01BB}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{45445B97-5844-460E-8C8A-8C8A9BCA01BB}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{45445B97-5844-460E-8C8A-8C8A9BCA01BB}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{45445B97-5844-460E-8C8A-8C8A9BCA01BB}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{45445B97-5844-460E-8C8A-8C8A9BCA01BB}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{45445B97-5844-460E-8C8A-8C8A9BCA01BB}.Release|Win32.Build.0 = Release|Win32
|
||||
{45445B97-5844-460E-8C8A-8C8A9BCA01BB}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{45445B97-5844-460E-8C8A-8C8A9BCA01BB}.Release|x64.ActiveCfg = Release|x64
|
||||
{45445B97-5844-460E-8C8A-8C8A9BCA01BB}.Release|x64.Build.0 = Release|x64
|
||||
{45445B97-5844-460E-8C8A-8C8A9BCA01BB}.Release|x64.Deploy.0 = Release|x64
|
||||
{45445B97-5844-460E-8C8A-8C8A9BCA01BB}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{45445B97-5844-460E-8C8A-8C8A9BCA01BB}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{45445B97-5844-460E-8C8A-8C8A9BCA01BB}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{546C5980-388B-4A05-ABE8-6DC366DBFA98}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{546C5980-388B-4A05-ABE8-6DC366DBFA98}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{546C5980-388B-4A05-ABE8-6DC366DBFA98}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{546C5980-388B-4A05-ABE8-6DC366DBFA98}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{546C5980-388B-4A05-ABE8-6DC366DBFA98}.Debug|x64.Build.0 = Debug|x64
|
||||
{546C5980-388B-4A05-ABE8-6DC366DBFA98}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{546C5980-388B-4A05-ABE8-6DC366DBFA98}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{546C5980-388B-4A05-ABE8-6DC366DBFA98}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{546C5980-388B-4A05-ABE8-6DC366DBFA98}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{546C5980-388B-4A05-ABE8-6DC366DBFA98}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{546C5980-388B-4A05-ABE8-6DC366DBFA98}.Release|Win32.Build.0 = Release|Win32
|
||||
{546C5980-388B-4A05-ABE8-6DC366DBFA98}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{546C5980-388B-4A05-ABE8-6DC366DBFA98}.Release|x64.ActiveCfg = Release|x64
|
||||
{546C5980-388B-4A05-ABE8-6DC366DBFA98}.Release|x64.Build.0 = Release|x64
|
||||
{546C5980-388B-4A05-ABE8-6DC366DBFA98}.Release|x64.Deploy.0 = Release|x64
|
||||
{546C5980-388B-4A05-ABE8-6DC366DBFA98}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{546C5980-388B-4A05-ABE8-6DC366DBFA98}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{546C5980-388B-4A05-ABE8-6DC366DBFA98}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
@@ -0,0 +1,69 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
<Suffix Condition="'$(Platform)'=='x64'">$(Suffix)64</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{EFBD6DB6-3999-49A9-9397-FAD2FD863A87}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary Condition="'$(Configuration)'=='Release'">MultiThreaded</RuntimeLibrary>
|
||||
<RuntimeLibrary Condition="'$(Configuration)'=='Debug'">MultiThreadedDebug</RuntimeLibrary>
|
||||
</ClCompile>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\plugins\fmod_codec_raw.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,69 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
<Suffix Condition="'$(Platform)'=='x64'">$(Suffix)64</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{89CF5705-9092-4C80-BAAE-D645855D8E3C}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary Condition="'$(Configuration)'=='Release'">MultiThreaded</RuntimeLibrary>
|
||||
<RuntimeLibrary Condition="'$(Configuration)'=='Debug'">MultiThreadedDebug</RuntimeLibrary>
|
||||
</ClCompile>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\plugins\fmod_distance_filter.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,69 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
<Suffix Condition="'$(Platform)'=='x64'">$(Suffix)64</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{DA265C8D-292E-4622-8D66-AD911719607C}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary Condition="'$(Configuration)'=='Release'">MultiThreaded</RuntimeLibrary>
|
||||
<RuntimeLibrary Condition="'$(Configuration)'=='Debug'">MultiThreadedDebug</RuntimeLibrary>
|
||||
</ClCompile>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\plugins\fmod_gain.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,69 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
<Suffix Condition="'$(Platform)'=='x64'">$(Suffix)64</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{E4525091-8E93-4075-9FB6-C2AEAD70AC63}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary Condition="'$(Configuration)'=='Release'">MultiThreaded</RuntimeLibrary>
|
||||
<RuntimeLibrary Condition="'$(Configuration)'=='Debug'">MultiThreadedDebug</RuntimeLibrary>
|
||||
</ClCompile>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\plugins\fmod_noise.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,69 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
<Suffix Condition="'$(Platform)'=='x64'">$(Suffix)64</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{45445B97-5844-460E-8C8A-8C8A9BCA01BB}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary Condition="'$(Configuration)'=='Release'">MultiThreaded</RuntimeLibrary>
|
||||
<RuntimeLibrary Condition="'$(Configuration)'=='Debug'">MultiThreadedDebug</RuntimeLibrary>
|
||||
</ClCompile>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\plugins\fmod_rnbo.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Arch>x86</Arch>
|
||||
<Arch Condition="'$(Platform)'=='x64'">x64</Arch>
|
||||
<Arch Condition="'$(Platform)'=='ARM64'">ARM64</Arch>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{2A310F24-BF68-40A0-80DB-151A2C2DD19E}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalLibraryDirectories>..\..\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\gapless_playback.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Arch>x86</Arch>
|
||||
<Arch Condition="'$(Platform)'=='x64'">x64</Arch>
|
||||
<Arch Condition="'$(Platform)'=='ARM64'">ARM64</Arch>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{2E9195B6-781C-4639-A89E-5518DBFF9B4B}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalLibraryDirectories>..\..\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\generate_tone.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Arch>x86</Arch>
|
||||
<Arch Condition="'$(Platform)'=='x64'">x64</Arch>
|
||||
<Arch Condition="'$(Platform)'=='ARM64'">ARM64</Arch>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{CD76FEC4-A143-425F-8C9C-148A4F8A75AB}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalLibraryDirectories>..\..\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\granular_synth.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Arch>x86</Arch>
|
||||
<Arch Condition="'$(Platform)'=='x64'">x64</Arch>
|
||||
<Arch Condition="'$(Platform)'=='ARM64'">ARM64</Arch>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{A4C690BA-86FE-4786-A373-B3DAADE8863A}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalLibraryDirectories>..\..\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\load_from_memory.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Arch>x86</Arch>
|
||||
<Arch Condition="'$(Platform)'=='x64'">x64</Arch>
|
||||
<Arch Condition="'$(Platform)'=='ARM64'">ARM64</Arch>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{F12F3706-097B-48BB-B71C-92D7885543D9}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalLibraryDirectories>..\..\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\multiple_speaker.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Arch>x86</Arch>
|
||||
<Arch Condition="'$(Platform)'=='x64'">x64</Arch>
|
||||
<Arch Condition="'$(Platform)'=='ARM64'">ARM64</Arch>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{F55FABF2-4D21-4F66-A0DF-4A47CA5356FA}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalLibraryDirectories>..\..\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\multiple_system.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Arch>x86</Arch>
|
||||
<Arch Condition="'$(Platform)'=='x64'">x64</Arch>
|
||||
<Arch Condition="'$(Platform)'=='ARM64'">ARM64</Arch>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{B97E6091-EC38-4A34-964A-C903A1C6D254}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalLibraryDirectories>..\..\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\net_stream.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,69 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
<Suffix Condition="'$(Platform)'=='x64'">$(Suffix)64</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{546C5980-388B-4A05-ABE8-6DC366DBFA98}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary Condition="'$(Configuration)'=='Release'">MultiThreaded</RuntimeLibrary>
|
||||
<RuntimeLibrary Condition="'$(Configuration)'=='Debug'">MultiThreadedDebug</RuntimeLibrary>
|
||||
</ClCompile>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\plugins\output_mp3.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Arch>x86</Arch>
|
||||
<Arch Condition="'$(Platform)'=='x64'">x64</Arch>
|
||||
<Arch Condition="'$(Platform)'=='ARM64'">ARM64</Arch>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{1823CB20-54DC-4F68-BDB4-0083B01D6326}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalLibraryDirectories>..\..\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\play_sound.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Arch>x86</Arch>
|
||||
<Arch Condition="'$(Platform)'=='x64'">x64</Arch>
|
||||
<Arch Condition="'$(Platform)'=='ARM64'">ARM64</Arch>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{6BCA9E05-7327-4421-A5E6-82751ECA6380}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalLibraryDirectories>..\..\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\play_stream.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Arch>x86</Arch>
|
||||
<Arch Condition="'$(Platform)'=='x64'">x64</Arch>
|
||||
<Arch Condition="'$(Platform)'=='ARM64'">ARM64</Arch>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{18D60FC0-7F72-45E0-9244-4A8F23DB4728}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalLibraryDirectories>..\..\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\record.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Arch>x86</Arch>
|
||||
<Arch Condition="'$(Platform)'=='x64'">x64</Arch>
|
||||
<Arch Condition="'$(Platform)'=='ARM64'">ARM64</Arch>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{37C4A65D-768C-46EF-8BDE-23A5DB762328}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalLibraryDirectories>..\..\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\record_enumeration.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<Arch>x86</Arch>
|
||||
<Arch Condition="'$(Platform)'=='x64'">x64</Arch>
|
||||
<Arch Condition="'$(Platform)'=='ARM64'">ARM64</Arch>
|
||||
<Suffix Condition="'$(Configuration)'=='Debug'">L</Suffix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{85EBD7F6-DF34-4815-83BE-5B0516B7F098}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<UseDebugLibraries Condition="'$(Configuration)'=='Debug'">true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<PropertyGroup>
|
||||
<OutDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\</OutDir>
|
||||
<IntDir>$(SolutionDir)_builds\$(ProjectName)\$(Configuration)\$(Platform)\Intermediate\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>$(ProjectName)$(Suffix)</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<AdditionalIncludeDirectories>..\..\inc</AdditionalIncludeDirectories>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<PreprocessorDefinitions>_WIN32_WINNT=0x601;WINVER=0x601;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalLibraryDirectories>..\..\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\user_created_sound.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user