aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2022-09-16 22:17:43 +0200
committerToni Uhlig <matzeton@googlemail.com>2022-09-16 22:17:43 +0200
commit904b7a16875b226cd60ad36917d778484a470601 (patch)
treebe320b97d83c22229ebf531223fafcc0c50e793f
parent8d3ba231015824813ce34db8bbc88fe6e39717e0 (diff)
Force CI to not stop on Warnings e.g. symbol deprecation.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r--PastDSEDriver/PastDSEDriver.vcxproj14
1 files changed, 13 insertions, 1 deletions
diff --git a/PastDSEDriver/PastDSEDriver.vcxproj b/PastDSEDriver/PastDSEDriver.vcxproj
index 7e3be35..d39bc25 100644
--- a/PastDSEDriver/PastDSEDriver.vcxproj
+++ b/PastDSEDriver/PastDSEDriver.vcxproj
@@ -90,6 +90,8 @@
<FavorSizeOrSpeed>Size</FavorSizeOrSpeed>
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
+ <WarningLevel>EnableAllWarnings</WarningLevel>
+ <TreatWarningAsError>false</TreatWarningAsError>
</ClCompile>
<DriverSign>
<FileDigestAlgorithm>SHA256</FileDigestAlgorithm>
@@ -99,6 +101,8 @@
<ClCompile>
<PreprocessorDefinitions>_WIN10_;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<FavorSizeOrSpeed>Size</FavorSizeOrSpeed>
+ <WarningLevel>EnableAllWarnings</WarningLevel>
+ <TreatWarningAsError>false</TreatWarningAsError>
</ClCompile>
<DriverSign>
<FileDigestAlgorithm>SHA256</FileDigestAlgorithm>
@@ -108,6 +112,8 @@
<ClCompile>
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
+ <WarningLevel>EnableAllWarnings</WarningLevel>
+ <TreatWarningAsError>false</TreatWarningAsError>
</ClCompile>
<DriverSign>
<FileDigestAlgorithm>SHA256</FileDigestAlgorithm>
@@ -117,6 +123,12 @@
<DriverSign>
<FileDigestAlgorithm>SHA256</FileDigestAlgorithm>
</DriverSign>
+ <ClCompile>
+ <WarningLevel>EnableAllWarnings</WarningLevel>
+ </ClCompile>
+ <ClCompile>
+ <TreatWarningAsError>false</TreatWarningAsError>
+ </ClCompile>
</ItemDefinitionGroup>
<ItemGroup>
<FilesToPackage Include="$(TargetPath)" />
@@ -142,4 +154,4 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
-</Project> \ No newline at end of file
+</Project>