2017-10-01 23:07:58 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<PropertyGroup>
|
|
|
|
<!-- Build to a folder outside the source folders, making it easier to clean. -->
|
2018-05-31 12:44:03 +02:00
|
|
|
<OutDir>$(MSBuildThisFileDirectory)bin\$(Configuration)\$(Platform)\</OutDir>
|
2017-10-03 22:17:42 +02:00
|
|
|
<OutDir Condition="'$(Platform)'=='Win32'">$(SolutionDir)bin\$(Configuration)\x86\</OutDir>
|
2017-10-04 00:05:47 +02:00
|
|
|
<OutDir Condition="'$(Platform)'=='AnyCPU'">$(SolutionDir)bin\$(Configuration)\x86\</OutDir>
|
2017-10-01 23:07:58 +02:00
|
|
|
|
|
|
|
<!-- C# Projects require the legagy OutputPath variabl. -->
|
|
|
|
<OutputPath>$(OutDir)</OutputPath>
|
|
|
|
|
|
|
|
<!-- C++ temp files can be redirected. -->
|
|
|
|
<!-- C# project files can also be redirected, but this causes rebuilds inside VS2015. -->
|
2018-05-31 12:44:03 +02:00
|
|
|
<IntDir>$(MSBuildThisFileDirectory)intermediate\$(MSBuildProjectName)\$(Platform)\$(Configuration)\</IntDir>
|
2017-10-01 23:07:58 +02:00
|
|
|
|
2018-05-31 12:44:03 +02:00
|
|
|
<WindowsTargetPlatformVersion>10.0.17134.0</WindowsTargetPlatformVersion>
|
2017-10-01 23:07:58 +02:00
|
|
|
<PlatformToolset>v141</PlatformToolset>
|
|
|
|
|
|
|
|
<!-- Default character set is Unicode (UTF16), defines _UNICODE and UNICODE. -->
|
|
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemDefinitionGroup>
|
|
|
|
<ClCompile>
|
|
|
|
<!-- To ensure high quality C++ code use Warning level 4 and treat warnings as errors to ensure warnings are fixed promptly. -->
|
|
|
|
<WarningLevel>Level4</WarningLevel>
|
|
|
|
<TreatWarningAsError>true</TreatWarningAsError>
|
|
|
|
|
|
|
|
<!-- Enable some more level 4 warnings that are disabled by default but are usefull. -->
|
2018-05-31 14:15:05 +02:00
|
|
|
<AdditionalOptions>/we4296 /we4548 /we4555 /we4777 /we4917 %(AdditionalOptions)</AdditionalOptions>
|
2017-10-01 23:07:58 +02:00
|
|
|
|
|
|
|
<!-- Use all cores to speed up the compilation (MS recommended best practice). -->
|
|
|
|
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
|
|
|
|
|
|
|
<!-- Explicit define that all projects are compiled according the latest offical C++ standard -->
|
|
|
|
<LanguageStandard>stdcpp14</LanguageStandard>
|
|
|
|
|
|
|
|
<!-- Explicit disable non conforming MSVC compiler options that are not compatible with the C++ standard -->
|
2018-05-31 12:44:03 +02:00
|
|
|
<ConformanceMode>true</ConformanceMode>
|
2017-10-01 23:07:58 +02:00
|
|
|
</ClCompile>
|
|
|
|
</ItemDefinitionGroup>
|
2017-10-05 16:41:53 +02:00
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Checked|Win32'">
|
|
|
|
<LinkIncremental>true</LinkIncremental>
|
|
|
|
<RunCodeAnalysis>true</RunCodeAnalysis>
|
2018-05-31 12:44:03 +02:00
|
|
|
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)default.ruleset</CodeAnalysisRuleSet>
|
2017-10-05 16:41:53 +02:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2018-05-31 14:15:05 +02:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Checked|x64'">
|
|
|
|
<LinkIncremental>true</LinkIncremental>
|
|
|
|
<RunCodeAnalysis>true</RunCodeAnalysis>
|
|
|
|
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)default.ruleset</CodeAnalysisRuleSet>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemDefinitionGroup Condition="'$(Configuration)'=='Checked'">
|
2017-10-05 16:41:53 +02:00
|
|
|
<ClCompile>
|
|
|
|
<!-- For checked builds, enable the MS static analyzer build into the compiler. -->
|
|
|
|
<EnablePREfast>true</EnablePREfast>
|
|
|
|
</ClCompile>
|
|
|
|
</ItemDefinitionGroup>
|
2017-10-01 23:07:58 +02:00
|
|
|
</Project>
|