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. -->
2022-09-24 20:23:44 +02:00
<OutDir>$(MSBuildThisFileDirectory)build\bin\$(Platform)\$(Configuration)\</OutDir>
<OutDir Condition="'$(Platform)'=='Win32'">$(MSBuildThisFileDirectory)build\bin\x86\$(Configuration)\</OutDir>
2018-11-24 15:17:26 +01:00
2017-10-01 23:07:58 +02:00
<!-- C++ temp files can be redirected. -->
2022-09-24 20:23:44 +02:00
<IntDir>$(MSBuildThisFileDirectory)build\intermediate\$(MSBuildProjectName)\$(Platform)\$(Configuration)\</IntDir>
<IntDir Condition="'$(Platform)'=='Win32'">$(MSBuildThisFileDirectory)build\intermediate\$(MSBuildProjectName)\x86\$(Configuration)\</IntDir>
2017-10-01 23:07:58 +02:00
2021-04-02 22:29:16 +02:00
<!-- The C runtime is provided by the OS on the Windows platform (Universal C Runtime (CRT)) -->
2019-11-08 21:56:38 +01:00
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
2017-10-01 23:07:58 +02:00
2021-04-02 22:29:16 +02:00
<!-- Default Windows API character set is Unicode (UTF16), defines _UNICODE and UNICODE. -->
2017-10-01 23:07:58 +02:00
<CharacterSet>Unicode</CharacterSet>
2018-11-21 21:50:48 +01:00
2019-01-25 21:27:13 +01:00
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)default.ruleset</CodeAnalysisRuleSet>
2020-05-23 18:56:45 +02:00
<VcpkgConfiguration Condition="'$(Configuration)' == 'Checked'">Debug</VcpkgConfiguration>
2017-10-01 23:07:58 +02:00
</PropertyGroup>
2020-12-30 14:32:56 +01:00
2017-10-01 23:07:58 +02:00
<ItemDefinitionGroup>
<ClCompile>
2022-01-03 23:44:58 +01:00
<!-- To ensure high quality C++ code use Warning level 4 and treat warnings as errors to ensure warnings are fixed promptly. -->
<WarningLevel>Level4</WarningLevel>
2017-10-01 23:07:58 +02:00
<TreatWarningAsError>true</TreatWarningAsError>
2022-01-03 23:44:58 +01:00
<UseFullPaths>true</UseFullPaths>
2017-10-01 23:07:58 +02:00
2022-10-05 13:03:11 +02:00
<!-- Explicit disable warnings from external files (Supported since Visual Studio 2019 16.10) -->
<ExternalWarningLevel>TurnOffAllWarnings</ExternalWarningLevel>
2021-04-24 13:12:28 +02:00
2022-01-03 23:44:58 +01:00
<!-- For development purposes, All warnings can be used to discover useful compiler warnings.
This requires also that some warnings need to be disabled from this all warning list. -->
<WarningLevel Condition="'$(CHARLS_ALL_WARNINGS)'!=''">EnableAllWarnings</WarningLevel>
2018-08-02 16:23:36 +02:00
<!--
Disable level All warnings that are not useful:
2019-11-09 13:28:22 +01:00
C4061 = enumerator 'identifier' in switch of enum 'enumeration' is not explicitly handled by a case label [Handled by default case]
2018-08-02 16:23:36 +02:00
C4365 = action' : conversion from 'type_1' to 'type_2', signed/unsigned mismatch
2019-11-09 13:28:22 +01:00
C4464 = A #include directive has a path that includes a '..' parent directory specifier. [Just informational]
2018-08-02 16:23:36 +02:00
C4514 = function' : unreferenced inline function has been removed [Just informational]
C4571 = Informational: catch(...) semantics changed since Visual C++ 7.1; structured exceptions (SEH) are no longer caught [Just informational]
2019-11-09 13:28:22 +01:00
C4623 = derived class`' : default constructor was implicitly defined as deleted because a base class default constructor is inaccessible or deleted [Just informational]
C4625 = derived class' : copy constructor was implicitly defined as deleted because a base class copy constructor is inaccessible or deleted [Just informational]
C4626 = derived class' : assignment operator was implicitly defined as deleted because a base class assignment operator is inaccessible or deleted [Just informational]
2018-08-02 16:23:36 +02:00
C4710 = function '' function not inlined [Just informational]
C4711 = function '' selected for automatic inline expansion [Just informational]
C4738 = storing 32-bit float result in memory, possible loss of performance [Just informational]
C4820 = bytes' bytes padding added after construct 'member_name' [Just informational]
2019-11-09 13:28:22 +01:00
C5026 = 'type': move constructor was implicitly defined as deleted [Just informational]
C5027 = 'type': move assignment operator was implicitly defined as deleted [Just informational]
C5045 = Compiler will insert Spectre mitigation for memory load if /Qspectre switch specified [Just informational]
2022-10-19 22:56:33 +02:00
C5264 = 'const' variable is not used [reported for const in header files]
2022-10-05 13:03:11 +02:00
C5258 = explicit capture of '' is not required for this use [VS 2019 requires capture of constexpr]
2018-08-02 16:23:36 +02:00
-->
2022-10-19 22:56:33 +02:00
<DisableSpecificWarnings Condition="'$(CHARLS_ALL_WARNINGS)'!=''">4061;4365;4464;4514;4571;4623;4625;4626;4710;4711;4738;4820;5026;5027;5045;5264;5258</DisableSpecificWarnings>
2020-05-23 18:56:45 +02:00
<!--
__cplusplus = Use the correct value for the __cplusplus macro
throwingNew = Communicate with the compiler that only the throwing variant of operator new is used.
2020-10-03 12:10:51 +02:00
utf-8 = interpret all source files as UTF-8 (Required as MSVC relies on UTF-8 signature, which is not used)
2021-04-29 20:36:47 +02:00
ZH:SHA_256 = Use an SHA-256 hash for the checksum.in debug info
2020-05-23 18:56:45 +02:00
-->
2021-04-29 20:36:47 +02:00
<AdditionalOptions>/Zc:__cplusplus /Zc:throwingNew /utf-8 /ZH:SHA_256 %(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>
2019-01-25 21:27:13 +01:00
2021-04-02 22:29:16 +02:00
<!-- Explicit define that all projects are compiled according the latest offical C++14 standard -->
2017-10-01 23:07:58 +02:00
<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>
2018-10-11 21:12:39 +02:00
2018-12-15 12:42:17 +01:00
<AdditionalIncludeDirectories>$(MSBuildThisFileDirectory)include</AdditionalIncludeDirectories>
<!-- Use by default precompiled headers with the modern name pch.h -->
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
2019-01-25 21:27:13 +01:00
<!-- For checked builds, enable the MS static analyzer build into the compiler. -->
<EnablePREfast Condition="'$(Configuration)'=='Checked'">true</EnablePREfast>
2020-12-30 14:32:56 +01:00
<DiagnosticsFormat>Caret</DiagnosticsFormat>
<!-- Enables recommended Security Development Lifecycle (SDL) checks.
This checks consist of compile-time checks and runtime checks. -->
<SDLCheck>true</SDLCheck>
2021-01-01 23:00:03 +01:00
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
2017-10-01 23:07:58 +02:00
</ClCompile>
2020-01-30 21:56:59 +01:00
<Link>
<TreatLinkerWarningAsErrors>true</TreatLinkerWarningAsErrors>
2021-01-01 23:00:03 +01:00
<!-- use FULL debug info to ensure code coverage works out of the box. -->
<GenerateDebugInformation>DebugFull</GenerateDebugInformation>
2020-01-30 21:56:59 +01:00
</Link>
<ResourceCompile>
<AdditionalIncludeDirectories>$(MSBuildThisFileDirectory)include</AdditionalIncludeDirectories>
</ResourceCompile>
2017-10-01 23:07:58 +02:00
</ItemDefinitionGroup>
2017-10-05 16:41:53 +02:00
2020-12-30 14:32:56 +01:00
<PropertyGroup Condition="'$(Configuration)'=='Debug' OR '$(Configuration)'=='Checked'">
2019-11-08 21:56:38 +01:00
<UseDebugLibraries>true</UseDebugLibraries>
</PropertyGroup>
2020-12-30 14:32:56 +01:00
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug' OR '$(Configuration)'=='Checked'">
<ClCompile>
<Optimization>Disabled</Optimization>
</ClCompile>
<Link>
2022-12-10 16:08:47 +01:00
<RandomizedBaseAddress Condition="'$(Platform)'!='ARM64'">false</RandomizedBaseAddress>
2020-12-30 14:32:56 +01:00
</Link>
</ItemDefinitionGroup>
2020-03-18 08:34:55 +01:00
2022-07-14 22:10:39 +02:00
<ItemDefinitionGroup Condition="'$(Configuration)'=='Checked'">
<ClCompile>
<!-- Clang-tidy generates false clang-diagnostic-unused-command-line-argument warnings, use not all options.-->
<AdditionalOptions>/Zc:__cplusplus /utf-8 /ZH:SHA_256</AdditionalOptions>
</ClCompile>
</ItemDefinitionGroup>
2020-12-30 14:32:56 +01:00
<PropertyGroup Condition="'$(Configuration)'=='Checked'">
2020-03-18 08:34:55 +01:00
<RunCodeAnalysis Condition="'$(MSBuildProjectExtension)'=='.vcxproj'" >true</RunCodeAnalysis>
<EnableCppCoreCheck>true</EnableCppCoreCheck>
2022-12-10 16:08:47 +01:00
<!-- Latest clang-tidy crashes during Win32 builds and clang-tidy doesn't run on ARM64 platform. -->
<EnableClangTidyCodeAnalysis Condition="'$(Platform)'!='Win32' AND '$(Platform)'!='ARM64'">true</EnableClangTidyCodeAnalysis>
2020-06-27 22:01:19 +02:00
<EnableMicrosoftCodeAnalysis>true</EnableMicrosoftCodeAnalysis>
2020-12-30 14:32:56 +01:00
</PropertyGroup>
2020-03-18 08:34:55 +01:00
2020-12-30 14:32:56 +01:00
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<UseDebugLibraries>false</UseDebugLibraries>
2018-05-31 14:15:05 +02:00
</PropertyGroup>
2020-12-30 14:32:56 +01:00
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
<ClCompile>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ControlFlowGuard>Guard</ControlFlowGuard>
</ClCompile>
2022-12-28 21:25:42 +01:00
2020-12-30 14:32:56 +01:00
<Link>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<LinkIncremental>false</LinkIncremental>
2021-04-02 22:29:16 +02:00
<!-- Store only the filename of the PDB file into the .exe/.dll for deterministic builds. -->
<AdditionalOptions>/PDBALTPATH:%_PDB% %(AdditionalOptions)</AdditionalOptions>
2021-05-07 22:49:42 +02:00
2022-12-28 16:44:13 +01:00
<!-- The MSVC C++ compiler has experimental support to create deterministic builds. Make it a build option. -->
<AdditionalOptions Condition="'$(CHARLS_DETERMINISTIC_BUILD)'=='true'">/experimental:deterministic %(AdditionalOptions)</AdditionalOptions>
2021-05-07 22:49:42 +02:00
<!-- Mark executable image compatible with the Control-flow Enforcement Technology (CET) Shadow Stack. -->
2022-12-10 16:08:47 +01:00
<CETCompat Condition="'$(Platform)'!='ARM64'">true</CETCompat>
2022-12-28 21:25:42 +01:00
<!-- On the ARM64 plaftorm enable Pointer Authentication for return addresses. -->
<GuardSignedReturns Condition="'$(Platform)'=='ARM64'">true</GuardSignedReturns>
2020-12-30 14:32:56 +01:00
</Link>
2022-12-28 21:25:42 +01:00
2022-01-08 22:17:02 +01:00
<ResourceCompile>
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ResourceCompile>
2020-12-30 14:32:56 +01:00
</ItemDefinitionGroup>
2017-10-01 23:07:58 +02:00
</Project>