cmake windows
This commit is contained in:
parent
f698a38c7e
commit
2ace28d941
387 changed files with 96179 additions and 1 deletions
83
SimpleGame/FMOD/api/core/examples/vs2017/3d.vcxproj
Normal file
83
SimpleGame/FMOD/api/core/examples/vs2017/3d.vcxproj
Normal file
|
@ -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>{FC0F9AB6-B661-4C11-B323-7AB76159647E}</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>
|
24
SimpleGame/FMOD/api/core/examples/vs2017/3d.vcxproj.filters
Normal file
24
SimpleGame/FMOD/api/core/examples/vs2017/3d.vcxproj.filters
Normal file
|
@ -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>
|
83
SimpleGame/FMOD/api/core/examples/vs2017/asyncio.vcxproj
Normal file
83
SimpleGame/FMOD/api/core/examples/vs2017/asyncio.vcxproj
Normal file
|
@ -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>{253F945A-674D-4AC9-AD17-8A79E611D177}</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>{FFC0AAB0-2216-4BE9-9B08-017B7585BB42}</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>{731C2023-73AE-4DD4-BE41-D420C9B1AEB3}</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>
|
83
SimpleGame/FMOD/api/core/examples/vs2017/dsp_custom.vcxproj
Normal file
83
SimpleGame/FMOD/api/core/examples/vs2017/dsp_custom.vcxproj
Normal file
|
@ -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>{2E155196-9ADA-4BA8-A7F0-F53B8F9DEF86}</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>{1B5A31E5-9C05-4680-91F8-D3CED3CD4BFE}</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>{3561F16E-76B3-44B0-8522-DC002D7A4462}</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>
|
83
SimpleGame/FMOD/api/core/examples/vs2017/effects.vcxproj
Normal file
83
SimpleGame/FMOD/api/core/examples/vs2017/effects.vcxproj
Normal file
|
@ -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>{EB716030-6147-46E6-923A-9BE3761A5D83}</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>
|
538
SimpleGame/FMOD/api/core/examples/vs2017/examples.sln
Normal file
538
SimpleGame/FMOD/api/core/examples/vs2017/examples.sln
Normal file
|
@ -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", "{FC0F9AB6-B661-4C11-B323-7AB76159647E}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "asyncio", "asyncio.vcxproj", "{253F945A-674D-4AC9-AD17-8A79E611D177}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "channel_groups", "channel_groups.vcxproj", "{FFC0AAB0-2216-4BE9-9B08-017B7585BB42}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "convolution_reverb", "convolution_reverb.vcxproj", "{731C2023-73AE-4DD4-BE41-D420C9B1AEB3}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dsp_custom", "dsp_custom.vcxproj", "{2E155196-9ADA-4BA8-A7F0-F53B8F9DEF86}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dsp_effect_per_speaker", "dsp_effect_per_speaker.vcxproj", "{1B5A31E5-9C05-4680-91F8-D3CED3CD4BFE}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dsp_inspector", "dsp_inspector.vcxproj", "{3561F16E-76B3-44B0-8522-DC002D7A4462}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "effects", "effects.vcxproj", "{EB716030-6147-46E6-923A-9BE3761A5D83}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gapless_playback", "gapless_playback.vcxproj", "{38EDE105-ED40-416E-8B3F-D68485441AA8}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "generate_tone", "generate_tone.vcxproj", "{7932C973-B540-4E74-942D-0BF5728BF091}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "granular_synth", "granular_synth.vcxproj", "{501C3C3D-8B4D-4EB2-9474-5463C68EA271}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "load_from_memory", "load_from_memory.vcxproj", "{D26E9EEF-F930-451B-8358-B4E961C2A15F}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "multiple_speaker", "multiple_speaker.vcxproj", "{8C976B7E-7365-4BBF-9685-B5F19A07E44F}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "multiple_system", "multiple_system.vcxproj", "{E8C07E07-E0FE-4357-A1C2-DBFB0D87E3F3}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "net_stream", "net_stream.vcxproj", "{85132E7A-73F1-4A05-A483-B7313EAB5213}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "play_sound", "play_sound.vcxproj", "{D9EB1955-6B94-4104-B575-F49E58C41950}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "play_stream", "play_stream.vcxproj", "{86B8B44F-5D74-41B8-BADD-27D0E4CC1133}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "record", "record.vcxproj", "{47B4FD36-0DC7-4696-9130-C06BB6AE7A33}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "record_enumeration", "record_enumeration.vcxproj", "{3904C036-87C3-4926-8CF3-09044A309655}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "user_created_sound", "user_created_sound.vcxproj", "{28C809E6-BCD2-4828-93B2-151A21C6DF5C}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fmod_codec_raw", "fmod_codec_raw.vcxproj", "{5633D9E2-14D5-4CC2-B955-5BFB1305755D}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fmod_distance_filter", "fmod_distance_filter.vcxproj", "{551E887A-BDCF-4260-8FD6-167E5D50F3EC}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fmod_gain", "fmod_gain.vcxproj", "{A32E6CB7-4CDC-4C96-BBA7-6C1393C1B2DB}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fmod_noise", "fmod_noise.vcxproj", "{2842107C-FC3A-4CAD-84BC-A9C5B720D92C}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fmod_rnbo", "fmod_rnbo.vcxproj", "{886B5D10-5CC4-4292-A764-8EB1D3C66D44}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "output_mp3", "output_mp3.vcxproj", "{D356A850-2D79-47D2-A914-34A2913E3D0B}"
|
||||
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
|
||||
{FC0F9AB6-B661-4C11-B323-7AB76159647E}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{FC0F9AB6-B661-4C11-B323-7AB76159647E}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{FC0F9AB6-B661-4C11-B323-7AB76159647E}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{FC0F9AB6-B661-4C11-B323-7AB76159647E}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{FC0F9AB6-B661-4C11-B323-7AB76159647E}.Debug|x64.Build.0 = Debug|x64
|
||||
{FC0F9AB6-B661-4C11-B323-7AB76159647E}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{FC0F9AB6-B661-4C11-B323-7AB76159647E}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{FC0F9AB6-B661-4C11-B323-7AB76159647E}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{FC0F9AB6-B661-4C11-B323-7AB76159647E}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{FC0F9AB6-B661-4C11-B323-7AB76159647E}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{FC0F9AB6-B661-4C11-B323-7AB76159647E}.Release|Win32.Build.0 = Release|Win32
|
||||
{FC0F9AB6-B661-4C11-B323-7AB76159647E}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{FC0F9AB6-B661-4C11-B323-7AB76159647E}.Release|x64.ActiveCfg = Release|x64
|
||||
{FC0F9AB6-B661-4C11-B323-7AB76159647E}.Release|x64.Build.0 = Release|x64
|
||||
{FC0F9AB6-B661-4C11-B323-7AB76159647E}.Release|x64.Deploy.0 = Release|x64
|
||||
{FC0F9AB6-B661-4C11-B323-7AB76159647E}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{FC0F9AB6-B661-4C11-B323-7AB76159647E}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{FC0F9AB6-B661-4C11-B323-7AB76159647E}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{253F945A-674D-4AC9-AD17-8A79E611D177}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{253F945A-674D-4AC9-AD17-8A79E611D177}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{253F945A-674D-4AC9-AD17-8A79E611D177}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{253F945A-674D-4AC9-AD17-8A79E611D177}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{253F945A-674D-4AC9-AD17-8A79E611D177}.Debug|x64.Build.0 = Debug|x64
|
||||
{253F945A-674D-4AC9-AD17-8A79E611D177}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{253F945A-674D-4AC9-AD17-8A79E611D177}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{253F945A-674D-4AC9-AD17-8A79E611D177}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{253F945A-674D-4AC9-AD17-8A79E611D177}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{253F945A-674D-4AC9-AD17-8A79E611D177}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{253F945A-674D-4AC9-AD17-8A79E611D177}.Release|Win32.Build.0 = Release|Win32
|
||||
{253F945A-674D-4AC9-AD17-8A79E611D177}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{253F945A-674D-4AC9-AD17-8A79E611D177}.Release|x64.ActiveCfg = Release|x64
|
||||
{253F945A-674D-4AC9-AD17-8A79E611D177}.Release|x64.Build.0 = Release|x64
|
||||
{253F945A-674D-4AC9-AD17-8A79E611D177}.Release|x64.Deploy.0 = Release|x64
|
||||
{253F945A-674D-4AC9-AD17-8A79E611D177}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{253F945A-674D-4AC9-AD17-8A79E611D177}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{253F945A-674D-4AC9-AD17-8A79E611D177}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{FFC0AAB0-2216-4BE9-9B08-017B7585BB42}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{FFC0AAB0-2216-4BE9-9B08-017B7585BB42}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{FFC0AAB0-2216-4BE9-9B08-017B7585BB42}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{FFC0AAB0-2216-4BE9-9B08-017B7585BB42}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{FFC0AAB0-2216-4BE9-9B08-017B7585BB42}.Debug|x64.Build.0 = Debug|x64
|
||||
{FFC0AAB0-2216-4BE9-9B08-017B7585BB42}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{FFC0AAB0-2216-4BE9-9B08-017B7585BB42}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{FFC0AAB0-2216-4BE9-9B08-017B7585BB42}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{FFC0AAB0-2216-4BE9-9B08-017B7585BB42}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{FFC0AAB0-2216-4BE9-9B08-017B7585BB42}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{FFC0AAB0-2216-4BE9-9B08-017B7585BB42}.Release|Win32.Build.0 = Release|Win32
|
||||
{FFC0AAB0-2216-4BE9-9B08-017B7585BB42}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{FFC0AAB0-2216-4BE9-9B08-017B7585BB42}.Release|x64.ActiveCfg = Release|x64
|
||||
{FFC0AAB0-2216-4BE9-9B08-017B7585BB42}.Release|x64.Build.0 = Release|x64
|
||||
{FFC0AAB0-2216-4BE9-9B08-017B7585BB42}.Release|x64.Deploy.0 = Release|x64
|
||||
{FFC0AAB0-2216-4BE9-9B08-017B7585BB42}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{FFC0AAB0-2216-4BE9-9B08-017B7585BB42}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{FFC0AAB0-2216-4BE9-9B08-017B7585BB42}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{731C2023-73AE-4DD4-BE41-D420C9B1AEB3}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{731C2023-73AE-4DD4-BE41-D420C9B1AEB3}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{731C2023-73AE-4DD4-BE41-D420C9B1AEB3}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{731C2023-73AE-4DD4-BE41-D420C9B1AEB3}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{731C2023-73AE-4DD4-BE41-D420C9B1AEB3}.Debug|x64.Build.0 = Debug|x64
|
||||
{731C2023-73AE-4DD4-BE41-D420C9B1AEB3}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{731C2023-73AE-4DD4-BE41-D420C9B1AEB3}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{731C2023-73AE-4DD4-BE41-D420C9B1AEB3}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{731C2023-73AE-4DD4-BE41-D420C9B1AEB3}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{731C2023-73AE-4DD4-BE41-D420C9B1AEB3}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{731C2023-73AE-4DD4-BE41-D420C9B1AEB3}.Release|Win32.Build.0 = Release|Win32
|
||||
{731C2023-73AE-4DD4-BE41-D420C9B1AEB3}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{731C2023-73AE-4DD4-BE41-D420C9B1AEB3}.Release|x64.ActiveCfg = Release|x64
|
||||
{731C2023-73AE-4DD4-BE41-D420C9B1AEB3}.Release|x64.Build.0 = Release|x64
|
||||
{731C2023-73AE-4DD4-BE41-D420C9B1AEB3}.Release|x64.Deploy.0 = Release|x64
|
||||
{731C2023-73AE-4DD4-BE41-D420C9B1AEB3}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{731C2023-73AE-4DD4-BE41-D420C9B1AEB3}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{731C2023-73AE-4DD4-BE41-D420C9B1AEB3}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{2E155196-9ADA-4BA8-A7F0-F53B8F9DEF86}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{2E155196-9ADA-4BA8-A7F0-F53B8F9DEF86}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{2E155196-9ADA-4BA8-A7F0-F53B8F9DEF86}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{2E155196-9ADA-4BA8-A7F0-F53B8F9DEF86}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{2E155196-9ADA-4BA8-A7F0-F53B8F9DEF86}.Debug|x64.Build.0 = Debug|x64
|
||||
{2E155196-9ADA-4BA8-A7F0-F53B8F9DEF86}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{2E155196-9ADA-4BA8-A7F0-F53B8F9DEF86}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{2E155196-9ADA-4BA8-A7F0-F53B8F9DEF86}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{2E155196-9ADA-4BA8-A7F0-F53B8F9DEF86}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{2E155196-9ADA-4BA8-A7F0-F53B8F9DEF86}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{2E155196-9ADA-4BA8-A7F0-F53B8F9DEF86}.Release|Win32.Build.0 = Release|Win32
|
||||
{2E155196-9ADA-4BA8-A7F0-F53B8F9DEF86}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{2E155196-9ADA-4BA8-A7F0-F53B8F9DEF86}.Release|x64.ActiveCfg = Release|x64
|
||||
{2E155196-9ADA-4BA8-A7F0-F53B8F9DEF86}.Release|x64.Build.0 = Release|x64
|
||||
{2E155196-9ADA-4BA8-A7F0-F53B8F9DEF86}.Release|x64.Deploy.0 = Release|x64
|
||||
{2E155196-9ADA-4BA8-A7F0-F53B8F9DEF86}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{2E155196-9ADA-4BA8-A7F0-F53B8F9DEF86}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{2E155196-9ADA-4BA8-A7F0-F53B8F9DEF86}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{1B5A31E5-9C05-4680-91F8-D3CED3CD4BFE}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{1B5A31E5-9C05-4680-91F8-D3CED3CD4BFE}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{1B5A31E5-9C05-4680-91F8-D3CED3CD4BFE}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{1B5A31E5-9C05-4680-91F8-D3CED3CD4BFE}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{1B5A31E5-9C05-4680-91F8-D3CED3CD4BFE}.Debug|x64.Build.0 = Debug|x64
|
||||
{1B5A31E5-9C05-4680-91F8-D3CED3CD4BFE}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{1B5A31E5-9C05-4680-91F8-D3CED3CD4BFE}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{1B5A31E5-9C05-4680-91F8-D3CED3CD4BFE}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{1B5A31E5-9C05-4680-91F8-D3CED3CD4BFE}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{1B5A31E5-9C05-4680-91F8-D3CED3CD4BFE}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{1B5A31E5-9C05-4680-91F8-D3CED3CD4BFE}.Release|Win32.Build.0 = Release|Win32
|
||||
{1B5A31E5-9C05-4680-91F8-D3CED3CD4BFE}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{1B5A31E5-9C05-4680-91F8-D3CED3CD4BFE}.Release|x64.ActiveCfg = Release|x64
|
||||
{1B5A31E5-9C05-4680-91F8-D3CED3CD4BFE}.Release|x64.Build.0 = Release|x64
|
||||
{1B5A31E5-9C05-4680-91F8-D3CED3CD4BFE}.Release|x64.Deploy.0 = Release|x64
|
||||
{1B5A31E5-9C05-4680-91F8-D3CED3CD4BFE}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{1B5A31E5-9C05-4680-91F8-D3CED3CD4BFE}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{1B5A31E5-9C05-4680-91F8-D3CED3CD4BFE}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{3561F16E-76B3-44B0-8522-DC002D7A4462}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{3561F16E-76B3-44B0-8522-DC002D7A4462}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{3561F16E-76B3-44B0-8522-DC002D7A4462}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{3561F16E-76B3-44B0-8522-DC002D7A4462}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{3561F16E-76B3-44B0-8522-DC002D7A4462}.Debug|x64.Build.0 = Debug|x64
|
||||
{3561F16E-76B3-44B0-8522-DC002D7A4462}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{3561F16E-76B3-44B0-8522-DC002D7A4462}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{3561F16E-76B3-44B0-8522-DC002D7A4462}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{3561F16E-76B3-44B0-8522-DC002D7A4462}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{3561F16E-76B3-44B0-8522-DC002D7A4462}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{3561F16E-76B3-44B0-8522-DC002D7A4462}.Release|Win32.Build.0 = Release|Win32
|
||||
{3561F16E-76B3-44B0-8522-DC002D7A4462}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{3561F16E-76B3-44B0-8522-DC002D7A4462}.Release|x64.ActiveCfg = Release|x64
|
||||
{3561F16E-76B3-44B0-8522-DC002D7A4462}.Release|x64.Build.0 = Release|x64
|
||||
{3561F16E-76B3-44B0-8522-DC002D7A4462}.Release|x64.Deploy.0 = Release|x64
|
||||
{3561F16E-76B3-44B0-8522-DC002D7A4462}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{3561F16E-76B3-44B0-8522-DC002D7A4462}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{3561F16E-76B3-44B0-8522-DC002D7A4462}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{EB716030-6147-46E6-923A-9BE3761A5D83}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{EB716030-6147-46E6-923A-9BE3761A5D83}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{EB716030-6147-46E6-923A-9BE3761A5D83}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{EB716030-6147-46E6-923A-9BE3761A5D83}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{EB716030-6147-46E6-923A-9BE3761A5D83}.Debug|x64.Build.0 = Debug|x64
|
||||
{EB716030-6147-46E6-923A-9BE3761A5D83}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{EB716030-6147-46E6-923A-9BE3761A5D83}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{EB716030-6147-46E6-923A-9BE3761A5D83}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{EB716030-6147-46E6-923A-9BE3761A5D83}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{EB716030-6147-46E6-923A-9BE3761A5D83}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{EB716030-6147-46E6-923A-9BE3761A5D83}.Release|Win32.Build.0 = Release|Win32
|
||||
{EB716030-6147-46E6-923A-9BE3761A5D83}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{EB716030-6147-46E6-923A-9BE3761A5D83}.Release|x64.ActiveCfg = Release|x64
|
||||
{EB716030-6147-46E6-923A-9BE3761A5D83}.Release|x64.Build.0 = Release|x64
|
||||
{EB716030-6147-46E6-923A-9BE3761A5D83}.Release|x64.Deploy.0 = Release|x64
|
||||
{EB716030-6147-46E6-923A-9BE3761A5D83}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{EB716030-6147-46E6-923A-9BE3761A5D83}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{EB716030-6147-46E6-923A-9BE3761A5D83}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{38EDE105-ED40-416E-8B3F-D68485441AA8}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{38EDE105-ED40-416E-8B3F-D68485441AA8}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{38EDE105-ED40-416E-8B3F-D68485441AA8}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{38EDE105-ED40-416E-8B3F-D68485441AA8}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{38EDE105-ED40-416E-8B3F-D68485441AA8}.Debug|x64.Build.0 = Debug|x64
|
||||
{38EDE105-ED40-416E-8B3F-D68485441AA8}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{38EDE105-ED40-416E-8B3F-D68485441AA8}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{38EDE105-ED40-416E-8B3F-D68485441AA8}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{38EDE105-ED40-416E-8B3F-D68485441AA8}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{38EDE105-ED40-416E-8B3F-D68485441AA8}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{38EDE105-ED40-416E-8B3F-D68485441AA8}.Release|Win32.Build.0 = Release|Win32
|
||||
{38EDE105-ED40-416E-8B3F-D68485441AA8}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{38EDE105-ED40-416E-8B3F-D68485441AA8}.Release|x64.ActiveCfg = Release|x64
|
||||
{38EDE105-ED40-416E-8B3F-D68485441AA8}.Release|x64.Build.0 = Release|x64
|
||||
{38EDE105-ED40-416E-8B3F-D68485441AA8}.Release|x64.Deploy.0 = Release|x64
|
||||
{38EDE105-ED40-416E-8B3F-D68485441AA8}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{38EDE105-ED40-416E-8B3F-D68485441AA8}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{38EDE105-ED40-416E-8B3F-D68485441AA8}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{7932C973-B540-4E74-942D-0BF5728BF091}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{7932C973-B540-4E74-942D-0BF5728BF091}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{7932C973-B540-4E74-942D-0BF5728BF091}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{7932C973-B540-4E74-942D-0BF5728BF091}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{7932C973-B540-4E74-942D-0BF5728BF091}.Debug|x64.Build.0 = Debug|x64
|
||||
{7932C973-B540-4E74-942D-0BF5728BF091}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{7932C973-B540-4E74-942D-0BF5728BF091}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{7932C973-B540-4E74-942D-0BF5728BF091}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{7932C973-B540-4E74-942D-0BF5728BF091}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{7932C973-B540-4E74-942D-0BF5728BF091}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{7932C973-B540-4E74-942D-0BF5728BF091}.Release|Win32.Build.0 = Release|Win32
|
||||
{7932C973-B540-4E74-942D-0BF5728BF091}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{7932C973-B540-4E74-942D-0BF5728BF091}.Release|x64.ActiveCfg = Release|x64
|
||||
{7932C973-B540-4E74-942D-0BF5728BF091}.Release|x64.Build.0 = Release|x64
|
||||
{7932C973-B540-4E74-942D-0BF5728BF091}.Release|x64.Deploy.0 = Release|x64
|
||||
{7932C973-B540-4E74-942D-0BF5728BF091}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{7932C973-B540-4E74-942D-0BF5728BF091}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{7932C973-B540-4E74-942D-0BF5728BF091}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{501C3C3D-8B4D-4EB2-9474-5463C68EA271}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{501C3C3D-8B4D-4EB2-9474-5463C68EA271}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{501C3C3D-8B4D-4EB2-9474-5463C68EA271}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{501C3C3D-8B4D-4EB2-9474-5463C68EA271}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{501C3C3D-8B4D-4EB2-9474-5463C68EA271}.Debug|x64.Build.0 = Debug|x64
|
||||
{501C3C3D-8B4D-4EB2-9474-5463C68EA271}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{501C3C3D-8B4D-4EB2-9474-5463C68EA271}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{501C3C3D-8B4D-4EB2-9474-5463C68EA271}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{501C3C3D-8B4D-4EB2-9474-5463C68EA271}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{501C3C3D-8B4D-4EB2-9474-5463C68EA271}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{501C3C3D-8B4D-4EB2-9474-5463C68EA271}.Release|Win32.Build.0 = Release|Win32
|
||||
{501C3C3D-8B4D-4EB2-9474-5463C68EA271}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{501C3C3D-8B4D-4EB2-9474-5463C68EA271}.Release|x64.ActiveCfg = Release|x64
|
||||
{501C3C3D-8B4D-4EB2-9474-5463C68EA271}.Release|x64.Build.0 = Release|x64
|
||||
{501C3C3D-8B4D-4EB2-9474-5463C68EA271}.Release|x64.Deploy.0 = Release|x64
|
||||
{501C3C3D-8B4D-4EB2-9474-5463C68EA271}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{501C3C3D-8B4D-4EB2-9474-5463C68EA271}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{501C3C3D-8B4D-4EB2-9474-5463C68EA271}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{D26E9EEF-F930-451B-8358-B4E961C2A15F}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{D26E9EEF-F930-451B-8358-B4E961C2A15F}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{D26E9EEF-F930-451B-8358-B4E961C2A15F}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{D26E9EEF-F930-451B-8358-B4E961C2A15F}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{D26E9EEF-F930-451B-8358-B4E961C2A15F}.Debug|x64.Build.0 = Debug|x64
|
||||
{D26E9EEF-F930-451B-8358-B4E961C2A15F}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{D26E9EEF-F930-451B-8358-B4E961C2A15F}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{D26E9EEF-F930-451B-8358-B4E961C2A15F}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{D26E9EEF-F930-451B-8358-B4E961C2A15F}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{D26E9EEF-F930-451B-8358-B4E961C2A15F}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{D26E9EEF-F930-451B-8358-B4E961C2A15F}.Release|Win32.Build.0 = Release|Win32
|
||||
{D26E9EEF-F930-451B-8358-B4E961C2A15F}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{D26E9EEF-F930-451B-8358-B4E961C2A15F}.Release|x64.ActiveCfg = Release|x64
|
||||
{D26E9EEF-F930-451B-8358-B4E961C2A15F}.Release|x64.Build.0 = Release|x64
|
||||
{D26E9EEF-F930-451B-8358-B4E961C2A15F}.Release|x64.Deploy.0 = Release|x64
|
||||
{D26E9EEF-F930-451B-8358-B4E961C2A15F}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{D26E9EEF-F930-451B-8358-B4E961C2A15F}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{D26E9EEF-F930-451B-8358-B4E961C2A15F}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{8C976B7E-7365-4BBF-9685-B5F19A07E44F}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{8C976B7E-7365-4BBF-9685-B5F19A07E44F}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{8C976B7E-7365-4BBF-9685-B5F19A07E44F}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{8C976B7E-7365-4BBF-9685-B5F19A07E44F}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{8C976B7E-7365-4BBF-9685-B5F19A07E44F}.Debug|x64.Build.0 = Debug|x64
|
||||
{8C976B7E-7365-4BBF-9685-B5F19A07E44F}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{8C976B7E-7365-4BBF-9685-B5F19A07E44F}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{8C976B7E-7365-4BBF-9685-B5F19A07E44F}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{8C976B7E-7365-4BBF-9685-B5F19A07E44F}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{8C976B7E-7365-4BBF-9685-B5F19A07E44F}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{8C976B7E-7365-4BBF-9685-B5F19A07E44F}.Release|Win32.Build.0 = Release|Win32
|
||||
{8C976B7E-7365-4BBF-9685-B5F19A07E44F}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{8C976B7E-7365-4BBF-9685-B5F19A07E44F}.Release|x64.ActiveCfg = Release|x64
|
||||
{8C976B7E-7365-4BBF-9685-B5F19A07E44F}.Release|x64.Build.0 = Release|x64
|
||||
{8C976B7E-7365-4BBF-9685-B5F19A07E44F}.Release|x64.Deploy.0 = Release|x64
|
||||
{8C976B7E-7365-4BBF-9685-B5F19A07E44F}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{8C976B7E-7365-4BBF-9685-B5F19A07E44F}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{8C976B7E-7365-4BBF-9685-B5F19A07E44F}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{E8C07E07-E0FE-4357-A1C2-DBFB0D87E3F3}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{E8C07E07-E0FE-4357-A1C2-DBFB0D87E3F3}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{E8C07E07-E0FE-4357-A1C2-DBFB0D87E3F3}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{E8C07E07-E0FE-4357-A1C2-DBFB0D87E3F3}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{E8C07E07-E0FE-4357-A1C2-DBFB0D87E3F3}.Debug|x64.Build.0 = Debug|x64
|
||||
{E8C07E07-E0FE-4357-A1C2-DBFB0D87E3F3}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{E8C07E07-E0FE-4357-A1C2-DBFB0D87E3F3}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{E8C07E07-E0FE-4357-A1C2-DBFB0D87E3F3}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{E8C07E07-E0FE-4357-A1C2-DBFB0D87E3F3}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{E8C07E07-E0FE-4357-A1C2-DBFB0D87E3F3}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{E8C07E07-E0FE-4357-A1C2-DBFB0D87E3F3}.Release|Win32.Build.0 = Release|Win32
|
||||
{E8C07E07-E0FE-4357-A1C2-DBFB0D87E3F3}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{E8C07E07-E0FE-4357-A1C2-DBFB0D87E3F3}.Release|x64.ActiveCfg = Release|x64
|
||||
{E8C07E07-E0FE-4357-A1C2-DBFB0D87E3F3}.Release|x64.Build.0 = Release|x64
|
||||
{E8C07E07-E0FE-4357-A1C2-DBFB0D87E3F3}.Release|x64.Deploy.0 = Release|x64
|
||||
{E8C07E07-E0FE-4357-A1C2-DBFB0D87E3F3}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{E8C07E07-E0FE-4357-A1C2-DBFB0D87E3F3}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{E8C07E07-E0FE-4357-A1C2-DBFB0D87E3F3}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{85132E7A-73F1-4A05-A483-B7313EAB5213}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{85132E7A-73F1-4A05-A483-B7313EAB5213}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{85132E7A-73F1-4A05-A483-B7313EAB5213}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{85132E7A-73F1-4A05-A483-B7313EAB5213}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{85132E7A-73F1-4A05-A483-B7313EAB5213}.Debug|x64.Build.0 = Debug|x64
|
||||
{85132E7A-73F1-4A05-A483-B7313EAB5213}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{85132E7A-73F1-4A05-A483-B7313EAB5213}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{85132E7A-73F1-4A05-A483-B7313EAB5213}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{85132E7A-73F1-4A05-A483-B7313EAB5213}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{85132E7A-73F1-4A05-A483-B7313EAB5213}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{85132E7A-73F1-4A05-A483-B7313EAB5213}.Release|Win32.Build.0 = Release|Win32
|
||||
{85132E7A-73F1-4A05-A483-B7313EAB5213}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{85132E7A-73F1-4A05-A483-B7313EAB5213}.Release|x64.ActiveCfg = Release|x64
|
||||
{85132E7A-73F1-4A05-A483-B7313EAB5213}.Release|x64.Build.0 = Release|x64
|
||||
{85132E7A-73F1-4A05-A483-B7313EAB5213}.Release|x64.Deploy.0 = Release|x64
|
||||
{85132E7A-73F1-4A05-A483-B7313EAB5213}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{85132E7A-73F1-4A05-A483-B7313EAB5213}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{85132E7A-73F1-4A05-A483-B7313EAB5213}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{D9EB1955-6B94-4104-B575-F49E58C41950}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{D9EB1955-6B94-4104-B575-F49E58C41950}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{D9EB1955-6B94-4104-B575-F49E58C41950}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{D9EB1955-6B94-4104-B575-F49E58C41950}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{D9EB1955-6B94-4104-B575-F49E58C41950}.Debug|x64.Build.0 = Debug|x64
|
||||
{D9EB1955-6B94-4104-B575-F49E58C41950}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{D9EB1955-6B94-4104-B575-F49E58C41950}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{D9EB1955-6B94-4104-B575-F49E58C41950}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{D9EB1955-6B94-4104-B575-F49E58C41950}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{D9EB1955-6B94-4104-B575-F49E58C41950}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{D9EB1955-6B94-4104-B575-F49E58C41950}.Release|Win32.Build.0 = Release|Win32
|
||||
{D9EB1955-6B94-4104-B575-F49E58C41950}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{D9EB1955-6B94-4104-B575-F49E58C41950}.Release|x64.ActiveCfg = Release|x64
|
||||
{D9EB1955-6B94-4104-B575-F49E58C41950}.Release|x64.Build.0 = Release|x64
|
||||
{D9EB1955-6B94-4104-B575-F49E58C41950}.Release|x64.Deploy.0 = Release|x64
|
||||
{D9EB1955-6B94-4104-B575-F49E58C41950}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{D9EB1955-6B94-4104-B575-F49E58C41950}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{D9EB1955-6B94-4104-B575-F49E58C41950}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{86B8B44F-5D74-41B8-BADD-27D0E4CC1133}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{86B8B44F-5D74-41B8-BADD-27D0E4CC1133}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{86B8B44F-5D74-41B8-BADD-27D0E4CC1133}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{86B8B44F-5D74-41B8-BADD-27D0E4CC1133}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{86B8B44F-5D74-41B8-BADD-27D0E4CC1133}.Debug|x64.Build.0 = Debug|x64
|
||||
{86B8B44F-5D74-41B8-BADD-27D0E4CC1133}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{86B8B44F-5D74-41B8-BADD-27D0E4CC1133}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{86B8B44F-5D74-41B8-BADD-27D0E4CC1133}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{86B8B44F-5D74-41B8-BADD-27D0E4CC1133}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{86B8B44F-5D74-41B8-BADD-27D0E4CC1133}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{86B8B44F-5D74-41B8-BADD-27D0E4CC1133}.Release|Win32.Build.0 = Release|Win32
|
||||
{86B8B44F-5D74-41B8-BADD-27D0E4CC1133}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{86B8B44F-5D74-41B8-BADD-27D0E4CC1133}.Release|x64.ActiveCfg = Release|x64
|
||||
{86B8B44F-5D74-41B8-BADD-27D0E4CC1133}.Release|x64.Build.0 = Release|x64
|
||||
{86B8B44F-5D74-41B8-BADD-27D0E4CC1133}.Release|x64.Deploy.0 = Release|x64
|
||||
{86B8B44F-5D74-41B8-BADD-27D0E4CC1133}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{86B8B44F-5D74-41B8-BADD-27D0E4CC1133}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{86B8B44F-5D74-41B8-BADD-27D0E4CC1133}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{47B4FD36-0DC7-4696-9130-C06BB6AE7A33}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{47B4FD36-0DC7-4696-9130-C06BB6AE7A33}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{47B4FD36-0DC7-4696-9130-C06BB6AE7A33}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{47B4FD36-0DC7-4696-9130-C06BB6AE7A33}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{47B4FD36-0DC7-4696-9130-C06BB6AE7A33}.Debug|x64.Build.0 = Debug|x64
|
||||
{47B4FD36-0DC7-4696-9130-C06BB6AE7A33}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{47B4FD36-0DC7-4696-9130-C06BB6AE7A33}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{47B4FD36-0DC7-4696-9130-C06BB6AE7A33}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{47B4FD36-0DC7-4696-9130-C06BB6AE7A33}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{47B4FD36-0DC7-4696-9130-C06BB6AE7A33}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{47B4FD36-0DC7-4696-9130-C06BB6AE7A33}.Release|Win32.Build.0 = Release|Win32
|
||||
{47B4FD36-0DC7-4696-9130-C06BB6AE7A33}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{47B4FD36-0DC7-4696-9130-C06BB6AE7A33}.Release|x64.ActiveCfg = Release|x64
|
||||
{47B4FD36-0DC7-4696-9130-C06BB6AE7A33}.Release|x64.Build.0 = Release|x64
|
||||
{47B4FD36-0DC7-4696-9130-C06BB6AE7A33}.Release|x64.Deploy.0 = Release|x64
|
||||
{47B4FD36-0DC7-4696-9130-C06BB6AE7A33}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{47B4FD36-0DC7-4696-9130-C06BB6AE7A33}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{47B4FD36-0DC7-4696-9130-C06BB6AE7A33}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{3904C036-87C3-4926-8CF3-09044A309655}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{3904C036-87C3-4926-8CF3-09044A309655}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{3904C036-87C3-4926-8CF3-09044A309655}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{3904C036-87C3-4926-8CF3-09044A309655}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{3904C036-87C3-4926-8CF3-09044A309655}.Debug|x64.Build.0 = Debug|x64
|
||||
{3904C036-87C3-4926-8CF3-09044A309655}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{3904C036-87C3-4926-8CF3-09044A309655}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{3904C036-87C3-4926-8CF3-09044A309655}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{3904C036-87C3-4926-8CF3-09044A309655}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{3904C036-87C3-4926-8CF3-09044A309655}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{3904C036-87C3-4926-8CF3-09044A309655}.Release|Win32.Build.0 = Release|Win32
|
||||
{3904C036-87C3-4926-8CF3-09044A309655}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{3904C036-87C3-4926-8CF3-09044A309655}.Release|x64.ActiveCfg = Release|x64
|
||||
{3904C036-87C3-4926-8CF3-09044A309655}.Release|x64.Build.0 = Release|x64
|
||||
{3904C036-87C3-4926-8CF3-09044A309655}.Release|x64.Deploy.0 = Release|x64
|
||||
{3904C036-87C3-4926-8CF3-09044A309655}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{3904C036-87C3-4926-8CF3-09044A309655}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{3904C036-87C3-4926-8CF3-09044A309655}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{28C809E6-BCD2-4828-93B2-151A21C6DF5C}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{28C809E6-BCD2-4828-93B2-151A21C6DF5C}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{28C809E6-BCD2-4828-93B2-151A21C6DF5C}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{28C809E6-BCD2-4828-93B2-151A21C6DF5C}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{28C809E6-BCD2-4828-93B2-151A21C6DF5C}.Debug|x64.Build.0 = Debug|x64
|
||||
{28C809E6-BCD2-4828-93B2-151A21C6DF5C}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{28C809E6-BCD2-4828-93B2-151A21C6DF5C}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{28C809E6-BCD2-4828-93B2-151A21C6DF5C}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{28C809E6-BCD2-4828-93B2-151A21C6DF5C}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{28C809E6-BCD2-4828-93B2-151A21C6DF5C}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{28C809E6-BCD2-4828-93B2-151A21C6DF5C}.Release|Win32.Build.0 = Release|Win32
|
||||
{28C809E6-BCD2-4828-93B2-151A21C6DF5C}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{28C809E6-BCD2-4828-93B2-151A21C6DF5C}.Release|x64.ActiveCfg = Release|x64
|
||||
{28C809E6-BCD2-4828-93B2-151A21C6DF5C}.Release|x64.Build.0 = Release|x64
|
||||
{28C809E6-BCD2-4828-93B2-151A21C6DF5C}.Release|x64.Deploy.0 = Release|x64
|
||||
{28C809E6-BCD2-4828-93B2-151A21C6DF5C}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{28C809E6-BCD2-4828-93B2-151A21C6DF5C}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{28C809E6-BCD2-4828-93B2-151A21C6DF5C}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{5633D9E2-14D5-4CC2-B955-5BFB1305755D}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{5633D9E2-14D5-4CC2-B955-5BFB1305755D}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{5633D9E2-14D5-4CC2-B955-5BFB1305755D}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{5633D9E2-14D5-4CC2-B955-5BFB1305755D}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{5633D9E2-14D5-4CC2-B955-5BFB1305755D}.Debug|x64.Build.0 = Debug|x64
|
||||
{5633D9E2-14D5-4CC2-B955-5BFB1305755D}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{5633D9E2-14D5-4CC2-B955-5BFB1305755D}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{5633D9E2-14D5-4CC2-B955-5BFB1305755D}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{5633D9E2-14D5-4CC2-B955-5BFB1305755D}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{5633D9E2-14D5-4CC2-B955-5BFB1305755D}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{5633D9E2-14D5-4CC2-B955-5BFB1305755D}.Release|Win32.Build.0 = Release|Win32
|
||||
{5633D9E2-14D5-4CC2-B955-5BFB1305755D}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{5633D9E2-14D5-4CC2-B955-5BFB1305755D}.Release|x64.ActiveCfg = Release|x64
|
||||
{5633D9E2-14D5-4CC2-B955-5BFB1305755D}.Release|x64.Build.0 = Release|x64
|
||||
{5633D9E2-14D5-4CC2-B955-5BFB1305755D}.Release|x64.Deploy.0 = Release|x64
|
||||
{5633D9E2-14D5-4CC2-B955-5BFB1305755D}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{5633D9E2-14D5-4CC2-B955-5BFB1305755D}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{5633D9E2-14D5-4CC2-B955-5BFB1305755D}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{551E887A-BDCF-4260-8FD6-167E5D50F3EC}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{551E887A-BDCF-4260-8FD6-167E5D50F3EC}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{551E887A-BDCF-4260-8FD6-167E5D50F3EC}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{551E887A-BDCF-4260-8FD6-167E5D50F3EC}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{551E887A-BDCF-4260-8FD6-167E5D50F3EC}.Debug|x64.Build.0 = Debug|x64
|
||||
{551E887A-BDCF-4260-8FD6-167E5D50F3EC}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{551E887A-BDCF-4260-8FD6-167E5D50F3EC}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{551E887A-BDCF-4260-8FD6-167E5D50F3EC}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{551E887A-BDCF-4260-8FD6-167E5D50F3EC}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{551E887A-BDCF-4260-8FD6-167E5D50F3EC}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{551E887A-BDCF-4260-8FD6-167E5D50F3EC}.Release|Win32.Build.0 = Release|Win32
|
||||
{551E887A-BDCF-4260-8FD6-167E5D50F3EC}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{551E887A-BDCF-4260-8FD6-167E5D50F3EC}.Release|x64.ActiveCfg = Release|x64
|
||||
{551E887A-BDCF-4260-8FD6-167E5D50F3EC}.Release|x64.Build.0 = Release|x64
|
||||
{551E887A-BDCF-4260-8FD6-167E5D50F3EC}.Release|x64.Deploy.0 = Release|x64
|
||||
{551E887A-BDCF-4260-8FD6-167E5D50F3EC}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{551E887A-BDCF-4260-8FD6-167E5D50F3EC}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{551E887A-BDCF-4260-8FD6-167E5D50F3EC}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{A32E6CB7-4CDC-4C96-BBA7-6C1393C1B2DB}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{A32E6CB7-4CDC-4C96-BBA7-6C1393C1B2DB}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{A32E6CB7-4CDC-4C96-BBA7-6C1393C1B2DB}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{A32E6CB7-4CDC-4C96-BBA7-6C1393C1B2DB}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{A32E6CB7-4CDC-4C96-BBA7-6C1393C1B2DB}.Debug|x64.Build.0 = Debug|x64
|
||||
{A32E6CB7-4CDC-4C96-BBA7-6C1393C1B2DB}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{A32E6CB7-4CDC-4C96-BBA7-6C1393C1B2DB}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{A32E6CB7-4CDC-4C96-BBA7-6C1393C1B2DB}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{A32E6CB7-4CDC-4C96-BBA7-6C1393C1B2DB}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{A32E6CB7-4CDC-4C96-BBA7-6C1393C1B2DB}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{A32E6CB7-4CDC-4C96-BBA7-6C1393C1B2DB}.Release|Win32.Build.0 = Release|Win32
|
||||
{A32E6CB7-4CDC-4C96-BBA7-6C1393C1B2DB}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{A32E6CB7-4CDC-4C96-BBA7-6C1393C1B2DB}.Release|x64.ActiveCfg = Release|x64
|
||||
{A32E6CB7-4CDC-4C96-BBA7-6C1393C1B2DB}.Release|x64.Build.0 = Release|x64
|
||||
{A32E6CB7-4CDC-4C96-BBA7-6C1393C1B2DB}.Release|x64.Deploy.0 = Release|x64
|
||||
{A32E6CB7-4CDC-4C96-BBA7-6C1393C1B2DB}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{A32E6CB7-4CDC-4C96-BBA7-6C1393C1B2DB}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{A32E6CB7-4CDC-4C96-BBA7-6C1393C1B2DB}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{2842107C-FC3A-4CAD-84BC-A9C5B720D92C}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{2842107C-FC3A-4CAD-84BC-A9C5B720D92C}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{2842107C-FC3A-4CAD-84BC-A9C5B720D92C}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{2842107C-FC3A-4CAD-84BC-A9C5B720D92C}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{2842107C-FC3A-4CAD-84BC-A9C5B720D92C}.Debug|x64.Build.0 = Debug|x64
|
||||
{2842107C-FC3A-4CAD-84BC-A9C5B720D92C}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{2842107C-FC3A-4CAD-84BC-A9C5B720D92C}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{2842107C-FC3A-4CAD-84BC-A9C5B720D92C}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{2842107C-FC3A-4CAD-84BC-A9C5B720D92C}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{2842107C-FC3A-4CAD-84BC-A9C5B720D92C}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{2842107C-FC3A-4CAD-84BC-A9C5B720D92C}.Release|Win32.Build.0 = Release|Win32
|
||||
{2842107C-FC3A-4CAD-84BC-A9C5B720D92C}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{2842107C-FC3A-4CAD-84BC-A9C5B720D92C}.Release|x64.ActiveCfg = Release|x64
|
||||
{2842107C-FC3A-4CAD-84BC-A9C5B720D92C}.Release|x64.Build.0 = Release|x64
|
||||
{2842107C-FC3A-4CAD-84BC-A9C5B720D92C}.Release|x64.Deploy.0 = Release|x64
|
||||
{2842107C-FC3A-4CAD-84BC-A9C5B720D92C}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{2842107C-FC3A-4CAD-84BC-A9C5B720D92C}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{2842107C-FC3A-4CAD-84BC-A9C5B720D92C}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{886B5D10-5CC4-4292-A764-8EB1D3C66D44}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{886B5D10-5CC4-4292-A764-8EB1D3C66D44}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{886B5D10-5CC4-4292-A764-8EB1D3C66D44}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{886B5D10-5CC4-4292-A764-8EB1D3C66D44}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{886B5D10-5CC4-4292-A764-8EB1D3C66D44}.Debug|x64.Build.0 = Debug|x64
|
||||
{886B5D10-5CC4-4292-A764-8EB1D3C66D44}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{886B5D10-5CC4-4292-A764-8EB1D3C66D44}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{886B5D10-5CC4-4292-A764-8EB1D3C66D44}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{886B5D10-5CC4-4292-A764-8EB1D3C66D44}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{886B5D10-5CC4-4292-A764-8EB1D3C66D44}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{886B5D10-5CC4-4292-A764-8EB1D3C66D44}.Release|Win32.Build.0 = Release|Win32
|
||||
{886B5D10-5CC4-4292-A764-8EB1D3C66D44}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{886B5D10-5CC4-4292-A764-8EB1D3C66D44}.Release|x64.ActiveCfg = Release|x64
|
||||
{886B5D10-5CC4-4292-A764-8EB1D3C66D44}.Release|x64.Build.0 = Release|x64
|
||||
{886B5D10-5CC4-4292-A764-8EB1D3C66D44}.Release|x64.Deploy.0 = Release|x64
|
||||
{886B5D10-5CC4-4292-A764-8EB1D3C66D44}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{886B5D10-5CC4-4292-A764-8EB1D3C66D44}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{886B5D10-5CC4-4292-A764-8EB1D3C66D44}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{D356A850-2D79-47D2-A914-34A2913E3D0B}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{D356A850-2D79-47D2-A914-34A2913E3D0B}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{D356A850-2D79-47D2-A914-34A2913E3D0B}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{D356A850-2D79-47D2-A914-34A2913E3D0B}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{D356A850-2D79-47D2-A914-34A2913E3D0B}.Debug|x64.Build.0 = Debug|x64
|
||||
{D356A850-2D79-47D2-A914-34A2913E3D0B}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{D356A850-2D79-47D2-A914-34A2913E3D0B}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{D356A850-2D79-47D2-A914-34A2913E3D0B}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{D356A850-2D79-47D2-A914-34A2913E3D0B}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{D356A850-2D79-47D2-A914-34A2913E3D0B}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{D356A850-2D79-47D2-A914-34A2913E3D0B}.Release|Win32.Build.0 = Release|Win32
|
||||
{D356A850-2D79-47D2-A914-34A2913E3D0B}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{D356A850-2D79-47D2-A914-34A2913E3D0B}.Release|x64.ActiveCfg = Release|x64
|
||||
{D356A850-2D79-47D2-A914-34A2913E3D0B}.Release|x64.Build.0 = Release|x64
|
||||
{D356A850-2D79-47D2-A914-34A2913E3D0B}.Release|x64.Deploy.0 = Release|x64
|
||||
{D356A850-2D79-47D2-A914-34A2913E3D0B}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{D356A850-2D79-47D2-A914-34A2913E3D0B}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{D356A850-2D79-47D2-A914-34A2913E3D0B}.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>{5633D9E2-14D5-4CC2-B955-5BFB1305755D}</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>{551E887A-BDCF-4260-8FD6-167E5D50F3EC}</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>
|
69
SimpleGame/FMOD/api/core/examples/vs2017/fmod_gain.vcxproj
Normal file
69
SimpleGame/FMOD/api/core/examples/vs2017/fmod_gain.vcxproj
Normal file
|
@ -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>{A32E6CB7-4CDC-4C96-BBA7-6C1393C1B2DB}</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>
|
69
SimpleGame/FMOD/api/core/examples/vs2017/fmod_noise.vcxproj
Normal file
69
SimpleGame/FMOD/api/core/examples/vs2017/fmod_noise.vcxproj
Normal file
|
@ -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>{2842107C-FC3A-4CAD-84BC-A9C5B720D92C}</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>
|
69
SimpleGame/FMOD/api/core/examples/vs2017/fmod_rnbo.vcxproj
Normal file
69
SimpleGame/FMOD/api/core/examples/vs2017/fmod_rnbo.vcxproj
Normal file
|
@ -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>{886B5D10-5CC4-4292-A764-8EB1D3C66D44}</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>{38EDE105-ED40-416E-8B3F-D68485441AA8}</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>{7932C973-B540-4E74-942D-0BF5728BF091}</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>{501C3C3D-8B4D-4EB2-9474-5463C68EA271}</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>{D26E9EEF-F930-451B-8358-B4E961C2A15F}</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>{8C976B7E-7365-4BBF-9685-B5F19A07E44F}</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>{E8C07E07-E0FE-4357-A1C2-DBFB0D87E3F3}</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>
|
83
SimpleGame/FMOD/api/core/examples/vs2017/net_stream.vcxproj
Normal file
83
SimpleGame/FMOD/api/core/examples/vs2017/net_stream.vcxproj
Normal file
|
@ -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>{85132E7A-73F1-4A05-A483-B7313EAB5213}</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>
|
69
SimpleGame/FMOD/api/core/examples/vs2017/output_mp3.vcxproj
Normal file
69
SimpleGame/FMOD/api/core/examples/vs2017/output_mp3.vcxproj
Normal file
|
@ -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>{D356A850-2D79-47D2-A914-34A2913E3D0B}</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>
|
83
SimpleGame/FMOD/api/core/examples/vs2017/play_sound.vcxproj
Normal file
83
SimpleGame/FMOD/api/core/examples/vs2017/play_sound.vcxproj
Normal file
|
@ -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>{D9EB1955-6B94-4104-B575-F49E58C41950}</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>
|
83
SimpleGame/FMOD/api/core/examples/vs2017/play_stream.vcxproj
Normal file
83
SimpleGame/FMOD/api/core/examples/vs2017/play_stream.vcxproj
Normal file
|
@ -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>{86B8B44F-5D74-41B8-BADD-27D0E4CC1133}</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>
|
83
SimpleGame/FMOD/api/core/examples/vs2017/record.vcxproj
Normal file
83
SimpleGame/FMOD/api/core/examples/vs2017/record.vcxproj
Normal file
|
@ -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>{47B4FD36-0DC7-4696-9130-C06BB6AE7A33}</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>{3904C036-87C3-4926-8CF3-09044A309655}</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>{28C809E6-BCD2-4828-93B2-151A21C6DF5C}</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>
|
Loading…
Add table
Add a link
Reference in a new issue