2019-08-22 12:13:59 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-07-24 16:01:55 +00:00
|
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<!-- Common default props for defining properties without macros. Import right before Microsoft.Cpp.Default.props -->
|
|
|
|
<ImportGroup Label="PropertySheets" />
|
|
|
|
<PropertyGroup Label="UserMacros" />
|
|
|
|
<PropertyGroup Label="Globals">
|
2019-08-22 12:13:59 +00:00
|
|
|
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
2019-07-24 16:01:55 +00:00
|
|
|
</PropertyGroup>
|
2020-03-25 14:37:15 +00:00
|
|
|
<PropertyGroup Label="Configuration">
|
|
|
|
<!-- Spectre mitigation is disabled by default unless WDK is installed -->
|
|
|
|
<SpectreMitigation>false</SpectreMitigation>
|
|
|
|
</PropertyGroup>
|
2019-07-24 16:01:55 +00:00
|
|
|
<ItemDefinitionGroup>
|
|
|
|
<ClCompile>
|
2020-02-07 12:25:05 +00:00
|
|
|
<LanguageStandard>stdcpplatest</LanguageStandard>
|
2020-03-25 14:37:15 +00:00
|
|
|
<PreprocessorDefinitions>_SILENCE_CXX17_ITERATOR_BASE_CLASS_DEPRECATION_WARNING=1;_HAS_EXCEPTIONS=0;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
|
<ExceptionHandling>false</ExceptionHandling>
|
2020-02-07 12:25:05 +00:00
|
|
|
<AdditionalOptions>-d2FH4- %(AdditionalOptions)</AdditionalOptions>
|
2020-03-25 18:26:14 +00:00
|
|
|
<RuntimeLibrary Condition = "$(Configuration.Contains('Release'))">MultiThreaded</RuntimeLibrary>
|
|
|
|
<RuntimeLibrary Condition = "$(Configuration.Contains('Debug'))">MultiThreadedDebug</RuntimeLibrary>
|
2019-07-24 16:01:55 +00:00
|
|
|
</ClCompile>
|
2020-02-07 12:25:05 +00:00
|
|
|
<Link>
|
|
|
|
<AdditionalOptions>-d2:-FH4- %(AdditionalOptions)</AdditionalOptions>
|
|
|
|
</Link>
|
2019-07-24 16:01:55 +00:00
|
|
|
</ItemDefinitionGroup>
|
|
|
|
<ItemGroup />
|
|
|
|
</Project>
|