added the readme
This commit is contained in:
@@ -0,0 +1,85 @@
|
||||
<?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>{6A2B9ADB-9D37-4AD0-8D5E-704016494DD2}</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>..\..\..\core\inc;..\..\..\studio\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>..\..\..\core\lib\$(Arch);..\..\..\studio\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;fmodstudio$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\..\core\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\..\studio\lib\$(Arch)\fmodstudio$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\..\core\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
copy /Y "..\..\..\studio\lib\$(Arch)\fmodstudio$(Suffix).dll" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common.h" />
|
||||
<ClCompile Include="..\common.cpp" />
|
||||
<ClInclude Include="..\common_platform.h" />
|
||||
<ClCompile Include="..\common_platform.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\3d.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,85 @@
|
||||
<?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>{313A5F70-D199-4E1B-B2C3-22D5BCEE7058}</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>..\..\..\core\inc;..\..\..\studio\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>..\..\..\core\lib\$(Arch);..\..\..\studio\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;fmodstudio$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\..\core\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\..\studio\lib\$(Arch)\fmodstudio$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\..\core\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
copy /Y "..\..\..\studio\lib\$(Arch)\fmodstudio$(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_multi.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,85 @@
|
||||
<?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>{5AF356EC-E627-4696-88FA-393F2567C89E}</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>..\..\..\core\inc;..\..\..\studio\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>..\..\..\core\lib\$(Arch);..\..\..\studio\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;fmodstudio$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\..\core\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\..\studio\lib\$(Arch)\fmodstudio$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\..\core\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
copy /Y "..\..\..\studio\lib\$(Arch)\fmodstudio$(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="..\event_parameter.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,198 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||
# Visual Studio 15
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "3d", "3d.vcxproj", "{6A2B9ADB-9D37-4AD0-8D5E-704016494DD2}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "3d_multi", "3d_multi.vcxproj", "{313A5F70-D199-4E1B-B2C3-22D5BCEE7058}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "event_parameter", "event_parameter.vcxproj", "{5AF356EC-E627-4696-88FA-393F2567C89E}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "load_banks", "load_banks.vcxproj", "{BC9F4EC6-EA53-4E28-A195-326CBB9672EE}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "music_callbacks", "music_callbacks.vcxproj", "{6F2DB886-37AF-4C24-B2B2-BDF78EBD463C}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "objectpan", "objectpan.vcxproj", "{E990E075-513A-4593-9DF2-0388ACE51AAC}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "programmer_sound", "programmer_sound.vcxproj", "{44396AA9-7D10-42AE-989E-744F4984DA05}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "recording_playback", "recording_playback.vcxproj", "{F5E9BC59-CD65-461F-BC26-6D48A738C168}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simple_event", "simple_event.vcxproj", "{679C8463-8AF3-4320-866D-60C952C123F3}"
|
||||
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
|
||||
{6A2B9ADB-9D37-4AD0-8D5E-704016494DD2}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{6A2B9ADB-9D37-4AD0-8D5E-704016494DD2}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{6A2B9ADB-9D37-4AD0-8D5E-704016494DD2}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{6A2B9ADB-9D37-4AD0-8D5E-704016494DD2}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{6A2B9ADB-9D37-4AD0-8D5E-704016494DD2}.Debug|x64.Build.0 = Debug|x64
|
||||
{6A2B9ADB-9D37-4AD0-8D5E-704016494DD2}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{6A2B9ADB-9D37-4AD0-8D5E-704016494DD2}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{6A2B9ADB-9D37-4AD0-8D5E-704016494DD2}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{6A2B9ADB-9D37-4AD0-8D5E-704016494DD2}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{6A2B9ADB-9D37-4AD0-8D5E-704016494DD2}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{6A2B9ADB-9D37-4AD0-8D5E-704016494DD2}.Release|Win32.Build.0 = Release|Win32
|
||||
{6A2B9ADB-9D37-4AD0-8D5E-704016494DD2}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{6A2B9ADB-9D37-4AD0-8D5E-704016494DD2}.Release|x64.ActiveCfg = Release|x64
|
||||
{6A2B9ADB-9D37-4AD0-8D5E-704016494DD2}.Release|x64.Build.0 = Release|x64
|
||||
{6A2B9ADB-9D37-4AD0-8D5E-704016494DD2}.Release|x64.Deploy.0 = Release|x64
|
||||
{6A2B9ADB-9D37-4AD0-8D5E-704016494DD2}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{6A2B9ADB-9D37-4AD0-8D5E-704016494DD2}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{6A2B9ADB-9D37-4AD0-8D5E-704016494DD2}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{313A5F70-D199-4E1B-B2C3-22D5BCEE7058}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{313A5F70-D199-4E1B-B2C3-22D5BCEE7058}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{313A5F70-D199-4E1B-B2C3-22D5BCEE7058}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{313A5F70-D199-4E1B-B2C3-22D5BCEE7058}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{313A5F70-D199-4E1B-B2C3-22D5BCEE7058}.Debug|x64.Build.0 = Debug|x64
|
||||
{313A5F70-D199-4E1B-B2C3-22D5BCEE7058}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{313A5F70-D199-4E1B-B2C3-22D5BCEE7058}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{313A5F70-D199-4E1B-B2C3-22D5BCEE7058}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{313A5F70-D199-4E1B-B2C3-22D5BCEE7058}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{313A5F70-D199-4E1B-B2C3-22D5BCEE7058}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{313A5F70-D199-4E1B-B2C3-22D5BCEE7058}.Release|Win32.Build.0 = Release|Win32
|
||||
{313A5F70-D199-4E1B-B2C3-22D5BCEE7058}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{313A5F70-D199-4E1B-B2C3-22D5BCEE7058}.Release|x64.ActiveCfg = Release|x64
|
||||
{313A5F70-D199-4E1B-B2C3-22D5BCEE7058}.Release|x64.Build.0 = Release|x64
|
||||
{313A5F70-D199-4E1B-B2C3-22D5BCEE7058}.Release|x64.Deploy.0 = Release|x64
|
||||
{313A5F70-D199-4E1B-B2C3-22D5BCEE7058}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{313A5F70-D199-4E1B-B2C3-22D5BCEE7058}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{313A5F70-D199-4E1B-B2C3-22D5BCEE7058}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{5AF356EC-E627-4696-88FA-393F2567C89E}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{5AF356EC-E627-4696-88FA-393F2567C89E}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{5AF356EC-E627-4696-88FA-393F2567C89E}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{5AF356EC-E627-4696-88FA-393F2567C89E}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{5AF356EC-E627-4696-88FA-393F2567C89E}.Debug|x64.Build.0 = Debug|x64
|
||||
{5AF356EC-E627-4696-88FA-393F2567C89E}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{5AF356EC-E627-4696-88FA-393F2567C89E}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{5AF356EC-E627-4696-88FA-393F2567C89E}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{5AF356EC-E627-4696-88FA-393F2567C89E}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{5AF356EC-E627-4696-88FA-393F2567C89E}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{5AF356EC-E627-4696-88FA-393F2567C89E}.Release|Win32.Build.0 = Release|Win32
|
||||
{5AF356EC-E627-4696-88FA-393F2567C89E}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{5AF356EC-E627-4696-88FA-393F2567C89E}.Release|x64.ActiveCfg = Release|x64
|
||||
{5AF356EC-E627-4696-88FA-393F2567C89E}.Release|x64.Build.0 = Release|x64
|
||||
{5AF356EC-E627-4696-88FA-393F2567C89E}.Release|x64.Deploy.0 = Release|x64
|
||||
{5AF356EC-E627-4696-88FA-393F2567C89E}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{5AF356EC-E627-4696-88FA-393F2567C89E}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{5AF356EC-E627-4696-88FA-393F2567C89E}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{BC9F4EC6-EA53-4E28-A195-326CBB9672EE}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{BC9F4EC6-EA53-4E28-A195-326CBB9672EE}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{BC9F4EC6-EA53-4E28-A195-326CBB9672EE}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{BC9F4EC6-EA53-4E28-A195-326CBB9672EE}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{BC9F4EC6-EA53-4E28-A195-326CBB9672EE}.Debug|x64.Build.0 = Debug|x64
|
||||
{BC9F4EC6-EA53-4E28-A195-326CBB9672EE}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{BC9F4EC6-EA53-4E28-A195-326CBB9672EE}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{BC9F4EC6-EA53-4E28-A195-326CBB9672EE}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{BC9F4EC6-EA53-4E28-A195-326CBB9672EE}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{BC9F4EC6-EA53-4E28-A195-326CBB9672EE}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{BC9F4EC6-EA53-4E28-A195-326CBB9672EE}.Release|Win32.Build.0 = Release|Win32
|
||||
{BC9F4EC6-EA53-4E28-A195-326CBB9672EE}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{BC9F4EC6-EA53-4E28-A195-326CBB9672EE}.Release|x64.ActiveCfg = Release|x64
|
||||
{BC9F4EC6-EA53-4E28-A195-326CBB9672EE}.Release|x64.Build.0 = Release|x64
|
||||
{BC9F4EC6-EA53-4E28-A195-326CBB9672EE}.Release|x64.Deploy.0 = Release|x64
|
||||
{BC9F4EC6-EA53-4E28-A195-326CBB9672EE}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{BC9F4EC6-EA53-4E28-A195-326CBB9672EE}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{BC9F4EC6-EA53-4E28-A195-326CBB9672EE}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{6F2DB886-37AF-4C24-B2B2-BDF78EBD463C}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{6F2DB886-37AF-4C24-B2B2-BDF78EBD463C}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{6F2DB886-37AF-4C24-B2B2-BDF78EBD463C}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{6F2DB886-37AF-4C24-B2B2-BDF78EBD463C}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{6F2DB886-37AF-4C24-B2B2-BDF78EBD463C}.Debug|x64.Build.0 = Debug|x64
|
||||
{6F2DB886-37AF-4C24-B2B2-BDF78EBD463C}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{6F2DB886-37AF-4C24-B2B2-BDF78EBD463C}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{6F2DB886-37AF-4C24-B2B2-BDF78EBD463C}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{6F2DB886-37AF-4C24-B2B2-BDF78EBD463C}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{6F2DB886-37AF-4C24-B2B2-BDF78EBD463C}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{6F2DB886-37AF-4C24-B2B2-BDF78EBD463C}.Release|Win32.Build.0 = Release|Win32
|
||||
{6F2DB886-37AF-4C24-B2B2-BDF78EBD463C}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{6F2DB886-37AF-4C24-B2B2-BDF78EBD463C}.Release|x64.ActiveCfg = Release|x64
|
||||
{6F2DB886-37AF-4C24-B2B2-BDF78EBD463C}.Release|x64.Build.0 = Release|x64
|
||||
{6F2DB886-37AF-4C24-B2B2-BDF78EBD463C}.Release|x64.Deploy.0 = Release|x64
|
||||
{6F2DB886-37AF-4C24-B2B2-BDF78EBD463C}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{6F2DB886-37AF-4C24-B2B2-BDF78EBD463C}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{6F2DB886-37AF-4C24-B2B2-BDF78EBD463C}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{E990E075-513A-4593-9DF2-0388ACE51AAC}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{E990E075-513A-4593-9DF2-0388ACE51AAC}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{E990E075-513A-4593-9DF2-0388ACE51AAC}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{E990E075-513A-4593-9DF2-0388ACE51AAC}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{E990E075-513A-4593-9DF2-0388ACE51AAC}.Debug|x64.Build.0 = Debug|x64
|
||||
{E990E075-513A-4593-9DF2-0388ACE51AAC}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{E990E075-513A-4593-9DF2-0388ACE51AAC}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{E990E075-513A-4593-9DF2-0388ACE51AAC}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{E990E075-513A-4593-9DF2-0388ACE51AAC}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{E990E075-513A-4593-9DF2-0388ACE51AAC}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{E990E075-513A-4593-9DF2-0388ACE51AAC}.Release|Win32.Build.0 = Release|Win32
|
||||
{E990E075-513A-4593-9DF2-0388ACE51AAC}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{E990E075-513A-4593-9DF2-0388ACE51AAC}.Release|x64.ActiveCfg = Release|x64
|
||||
{E990E075-513A-4593-9DF2-0388ACE51AAC}.Release|x64.Build.0 = Release|x64
|
||||
{E990E075-513A-4593-9DF2-0388ACE51AAC}.Release|x64.Deploy.0 = Release|x64
|
||||
{E990E075-513A-4593-9DF2-0388ACE51AAC}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{E990E075-513A-4593-9DF2-0388ACE51AAC}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{E990E075-513A-4593-9DF2-0388ACE51AAC}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{44396AA9-7D10-42AE-989E-744F4984DA05}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{44396AA9-7D10-42AE-989E-744F4984DA05}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{44396AA9-7D10-42AE-989E-744F4984DA05}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{44396AA9-7D10-42AE-989E-744F4984DA05}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{44396AA9-7D10-42AE-989E-744F4984DA05}.Debug|x64.Build.0 = Debug|x64
|
||||
{44396AA9-7D10-42AE-989E-744F4984DA05}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{44396AA9-7D10-42AE-989E-744F4984DA05}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{44396AA9-7D10-42AE-989E-744F4984DA05}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{44396AA9-7D10-42AE-989E-744F4984DA05}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{44396AA9-7D10-42AE-989E-744F4984DA05}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{44396AA9-7D10-42AE-989E-744F4984DA05}.Release|Win32.Build.0 = Release|Win32
|
||||
{44396AA9-7D10-42AE-989E-744F4984DA05}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{44396AA9-7D10-42AE-989E-744F4984DA05}.Release|x64.ActiveCfg = Release|x64
|
||||
{44396AA9-7D10-42AE-989E-744F4984DA05}.Release|x64.Build.0 = Release|x64
|
||||
{44396AA9-7D10-42AE-989E-744F4984DA05}.Release|x64.Deploy.0 = Release|x64
|
||||
{44396AA9-7D10-42AE-989E-744F4984DA05}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{44396AA9-7D10-42AE-989E-744F4984DA05}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{44396AA9-7D10-42AE-989E-744F4984DA05}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{F5E9BC59-CD65-461F-BC26-6D48A738C168}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{F5E9BC59-CD65-461F-BC26-6D48A738C168}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{F5E9BC59-CD65-461F-BC26-6D48A738C168}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{F5E9BC59-CD65-461F-BC26-6D48A738C168}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{F5E9BC59-CD65-461F-BC26-6D48A738C168}.Debug|x64.Build.0 = Debug|x64
|
||||
{F5E9BC59-CD65-461F-BC26-6D48A738C168}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{F5E9BC59-CD65-461F-BC26-6D48A738C168}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{F5E9BC59-CD65-461F-BC26-6D48A738C168}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{F5E9BC59-CD65-461F-BC26-6D48A738C168}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{F5E9BC59-CD65-461F-BC26-6D48A738C168}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{F5E9BC59-CD65-461F-BC26-6D48A738C168}.Release|Win32.Build.0 = Release|Win32
|
||||
{F5E9BC59-CD65-461F-BC26-6D48A738C168}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{F5E9BC59-CD65-461F-BC26-6D48A738C168}.Release|x64.ActiveCfg = Release|x64
|
||||
{F5E9BC59-CD65-461F-BC26-6D48A738C168}.Release|x64.Build.0 = Release|x64
|
||||
{F5E9BC59-CD65-461F-BC26-6D48A738C168}.Release|x64.Deploy.0 = Release|x64
|
||||
{F5E9BC59-CD65-461F-BC26-6D48A738C168}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{F5E9BC59-CD65-461F-BC26-6D48A738C168}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{F5E9BC59-CD65-461F-BC26-6D48A738C168}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
{679C8463-8AF3-4320-866D-60C952C123F3}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{679C8463-8AF3-4320-866D-60C952C123F3}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{679C8463-8AF3-4320-866D-60C952C123F3}.Debug|Win32.Deploy.0 = Debug|Win32
|
||||
{679C8463-8AF3-4320-866D-60C952C123F3}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{679C8463-8AF3-4320-866D-60C952C123F3}.Debug|x64.Build.0 = Debug|x64
|
||||
{679C8463-8AF3-4320-866D-60C952C123F3}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{679C8463-8AF3-4320-866D-60C952C123F3}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
||||
{679C8463-8AF3-4320-866D-60C952C123F3}.Debug|ARM64.Build.0 = Debug|ARM64
|
||||
{679C8463-8AF3-4320-866D-60C952C123F3}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
||||
{679C8463-8AF3-4320-866D-60C952C123F3}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{679C8463-8AF3-4320-866D-60C952C123F3}.Release|Win32.Build.0 = Release|Win32
|
||||
{679C8463-8AF3-4320-866D-60C952C123F3}.Release|Win32.Deploy.0 = Release|Win32
|
||||
{679C8463-8AF3-4320-866D-60C952C123F3}.Release|x64.ActiveCfg = Release|x64
|
||||
{679C8463-8AF3-4320-866D-60C952C123F3}.Release|x64.Build.0 = Release|x64
|
||||
{679C8463-8AF3-4320-866D-60C952C123F3}.Release|x64.Deploy.0 = Release|x64
|
||||
{679C8463-8AF3-4320-866D-60C952C123F3}.Release|ARM64.ActiveCfg = Release|ARM64
|
||||
{679C8463-8AF3-4320-866D-60C952C123F3}.Release|ARM64.Build.0 = Release|ARM64
|
||||
{679C8463-8AF3-4320-866D-60C952C123F3}.Release|ARM64.Deploy.0 = Release|ARM64
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
@@ -0,0 +1,85 @@
|
||||
<?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>{BC9F4EC6-EA53-4E28-A195-326CBB9672EE}</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>..\..\..\core\inc;..\..\..\studio\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>..\..\..\core\lib\$(Arch);..\..\..\studio\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;fmodstudio$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\..\core\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\..\studio\lib\$(Arch)\fmodstudio$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\..\core\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
copy /Y "..\..\..\studio\lib\$(Arch)\fmodstudio$(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_banks.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,85 @@
|
||||
<?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>{6F2DB886-37AF-4C24-B2B2-BDF78EBD463C}</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>..\..\..\core\inc;..\..\..\studio\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>..\..\..\core\lib\$(Arch);..\..\..\studio\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;fmodstudio$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\..\core\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\..\studio\lib\$(Arch)\fmodstudio$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\..\core\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
copy /Y "..\..\..\studio\lib\$(Arch)\fmodstudio$(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="..\music_callbacks.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,85 @@
|
||||
<?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>{E990E075-513A-4593-9DF2-0388ACE51AAC}</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>..\..\..\core\inc;..\..\..\studio\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>..\..\..\core\lib\$(Arch);..\..\..\studio\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;fmodstudio$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\..\core\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\..\studio\lib\$(Arch)\fmodstudio$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\..\core\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
copy /Y "..\..\..\studio\lib\$(Arch)\fmodstudio$(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="..\objectpan.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,85 @@
|
||||
<?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>{44396AA9-7D10-42AE-989E-744F4984DA05}</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>..\..\..\core\inc;..\..\..\studio\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>..\..\..\core\lib\$(Arch);..\..\..\studio\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;fmodstudio$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\..\core\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\..\studio\lib\$(Arch)\fmodstudio$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\..\core\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
copy /Y "..\..\..\studio\lib\$(Arch)\fmodstudio$(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="..\programmer_sound.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,85 @@
|
||||
<?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>{F5E9BC59-CD65-461F-BC26-6D48A738C168}</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>..\..\..\core\inc;..\..\..\studio\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>..\..\..\core\lib\$(Arch);..\..\..\studio\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;fmodstudio$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\..\core\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\..\studio\lib\$(Arch)\fmodstudio$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\..\core\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
copy /Y "..\..\..\studio\lib\$(Arch)\fmodstudio$(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="..\recording_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,85 @@
|
||||
<?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>{679C8463-8AF3-4320-866D-60C952C123F3}</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>..\..\..\core\inc;..\..\..\studio\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>..\..\..\core\lib\$(Arch);..\..\..\studio\lib\$(Arch)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>fmod$(Suffix)_vc.lib;fmodstudio$(Suffix)_vc.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>if not exist ..\bin mkdir ..\bin
|
||||
copy /Y "$(TargetPath)" ..\bin
|
||||
copy /Y "..\..\..\core\lib\$(Arch)\fmod$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\..\studio\lib\$(Arch)\fmodstudio$(Suffix).dll" ..\bin
|
||||
copy /Y "..\..\..\core\lib\$(Arch)\fmod$(Suffix).dll" "$(OutDir)"
|
||||
copy /Y "..\..\..\studio\lib\$(Arch)\fmodstudio$(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="..\simple_event.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\common_platform.cpp">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
<UniqueIdentifier>{937abb1b-0123-4875-9828-07ed9f9813e3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common_platform.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user