aboutsummaryrefslogtreecommitdiff
path: root/devtools
diff options
context:
space:
mode:
authorSupSuper2018-12-17 00:16:34 +0000
committerFilippos Karapetis2018-12-23 18:39:06 +0200
commit0a474f2a1a2aa1d4254f08c66070d1dfcdfb48cc (patch)
tree976dd1c7fe2b2764447a843e34e7360414ef22a2 /devtools
parent2097c33b57d1a105b7f72637cd4a6cf2be3fc39e (diff)
downloadscummvm-rg350-0a474f2a1a2aa1d4254f08c66070d1dfcdfb48cc.tar.gz
scummvm-rg350-0a474f2a1a2aa1d4254f08c66070d1dfcdfb48cc.tar.bz2
scummvm-rg350-0a474f2a1a2aa1d4254f08c66070d1dfcdfb48cc.zip
CREATE_PROJECT: Fix MSVC warnings
Diffstat (limited to 'devtools')
-rw-r--r--devtools/create_project/msvc10/create_project.vcxproj2
-rw-r--r--devtools/create_project/msvc11/create_project.vcxproj2
-rw-r--r--devtools/create_project/msvc12/create_project.vcxproj2
-rw-r--r--devtools/create_project/msvc14/create_project.vcxproj2
-rw-r--r--devtools/create_project/msvc15/create_project.vcxproj3
-rw-r--r--devtools/create_project/msvc9/create_project.vcproj2
6 files changed, 6 insertions, 7 deletions
diff --git a/devtools/create_project/msvc10/create_project.vcxproj b/devtools/create_project/msvc10/create_project.vcxproj
index 0386c3e5ad..bc6f634486 100644
--- a/devtools/create_project/msvc10/create_project.vcxproj
+++ b/devtools/create_project/msvc10/create_project.vcxproj
@@ -50,7 +50,7 @@
<WarningLevel>Level4</WarningLevel>
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
<DisableLanguageExtensions>false</DisableLanguageExtensions>
- <DisableSpecificWarnings>4003;4512;4127;4100</DisableSpecificWarnings>
+ <DisableSpecificWarnings>4003;4512;4127;4100;4244</DisableSpecificWarnings>
</ClCompile>
<Link>
<AdditionalDependencies>Rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
diff --git a/devtools/create_project/msvc11/create_project.vcxproj b/devtools/create_project/msvc11/create_project.vcxproj
index 9168163e3e..74fa93730b 100644
--- a/devtools/create_project/msvc11/create_project.vcxproj
+++ b/devtools/create_project/msvc11/create_project.vcxproj
@@ -53,7 +53,7 @@
<WarningLevel>Level4</WarningLevel>
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
<DisableLanguageExtensions>false</DisableLanguageExtensions>
- <DisableSpecificWarnings>4003;4512;4127;4100</DisableSpecificWarnings>
+ <DisableSpecificWarnings>4003;4512;4127;4100;4244</DisableSpecificWarnings>
</ClCompile>
<Link>
<AdditionalDependencies>Rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
diff --git a/devtools/create_project/msvc12/create_project.vcxproj b/devtools/create_project/msvc12/create_project.vcxproj
index 0623b24a40..f8afe4c0e4 100644
--- a/devtools/create_project/msvc12/create_project.vcxproj
+++ b/devtools/create_project/msvc12/create_project.vcxproj
@@ -52,7 +52,7 @@
<WarningLevel>Level4</WarningLevel>
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
<DisableLanguageExtensions>false</DisableLanguageExtensions>
- <DisableSpecificWarnings>4003;4512;4127;4100</DisableSpecificWarnings>
+ <DisableSpecificWarnings>4003;4512;4127;4100;4244</DisableSpecificWarnings>
</ClCompile>
<Link>
<AdditionalDependencies>Rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
diff --git a/devtools/create_project/msvc14/create_project.vcxproj b/devtools/create_project/msvc14/create_project.vcxproj
index aec8c94f43..1ac132d268 100644
--- a/devtools/create_project/msvc14/create_project.vcxproj
+++ b/devtools/create_project/msvc14/create_project.vcxproj
@@ -76,7 +76,7 @@
<WarningLevel>Level4</WarningLevel>
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
<DisableLanguageExtensions>false</DisableLanguageExtensions>
- <DisableSpecificWarnings>4003;4512;4127;4100</DisableSpecificWarnings>
+ <DisableSpecificWarnings>4003;4512;4127;4100;4244</DisableSpecificWarnings>
<ExceptionHandling>Sync</ExceptionHandling>
</ClCompile>
<Link>
diff --git a/devtools/create_project/msvc15/create_project.vcxproj b/devtools/create_project/msvc15/create_project.vcxproj
index 24e579facf..1ead51cff9 100644
--- a/devtools/create_project/msvc15/create_project.vcxproj
+++ b/devtools/create_project/msvc15/create_project.vcxproj
@@ -70,13 +70,12 @@
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<Optimization>Disabled</Optimization>
- <MinimalRebuild>true</MinimalRebuild>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<WarningLevel>Level4</WarningLevel>
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
<DisableLanguageExtensions>false</DisableLanguageExtensions>
- <DisableSpecificWarnings>4003;4512;4127;4100</DisableSpecificWarnings>
+ <DisableSpecificWarnings>4003;4512;4127;4100;4244</DisableSpecificWarnings>
<ExceptionHandling>Sync</ExceptionHandling>
</ClCompile>
<Link>
diff --git a/devtools/create_project/msvc9/create_project.vcproj b/devtools/create_project/msvc9/create_project.vcproj
index f348226337..0069f2ab9c 100644
--- a/devtools/create_project/msvc9/create_project.vcproj
+++ b/devtools/create_project/msvc9/create_project.vcproj
@@ -45,7 +45,7 @@
RuntimeLibrary="3"
WarningLevel="4"
DebugInformationFormat="4"
- DisableSpecificWarnings="4003;4512;4127;4100"
+ DisableSpecificWarnings="4003;4512;4127;4100;4244"
/>
<Tool
Name="VCManagedResourceCompilerTool"