Added support for newer version of VS2022 + ignore the same warnings in "Release" configuration as in "Release_Static" configuration.
This commit is contained in:
parent
7605972d02
commit
7410d11e5e
@ -199,6 +199,7 @@
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<ControlFlowGuard>false</ControlFlowGuard>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<DisableSpecificWarnings>4714;4324;4127</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
|
@ -199,6 +199,7 @@
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<ControlFlowGuard>false</ControlFlowGuard>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<DisableSpecificWarnings>4714;4324;4127</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
|
@ -67,7 +67,11 @@ namespace MUtils
|
||||
#error Compiler is not supported!
|
||||
#endif
|
||||
#elif defined(_MSC_VER)
|
||||
#if (_MSC_VER == 1930)
|
||||
#if (_MSC_VER == 1932)
|
||||
"MSVC 2022.2";
|
||||
#elif (_MSC_VER == 1931)
|
||||
"MSVC 2022.1";
|
||||
#elif (_MSC_VER == 1930)
|
||||
#if (_MSC_FULL_VER <= 193030706)
|
||||
"MSVC 2022.0";
|
||||
#else
|
||||
|
@ -427,7 +427,7 @@ void MUtils::Terminal::set_icon(const QIcon &icon)
|
||||
bool success = false;
|
||||
if (const SetConsoleIconFun pSetConsoleIconFun = MUtils::Win32Utils::resolve<SetConsoleIconFun>(QLatin1String("kernel32"), QLatin1String("SetConsoleIcon")))
|
||||
{
|
||||
const DWORD before = GetLastError();
|
||||
//const DWORD before = GetLastError();
|
||||
if (pSetConsoleIconFun(hIcon))
|
||||
{
|
||||
success = true;
|
||||
|
Loading…
Reference in New Issue
Block a user