Added support for VS2017 version 15.5.0.
This commit is contained in:
parent
4d2aaa304f
commit
8adbc8a212
@ -67,7 +67,13 @@ namespace MUtils
|
|||||||
#error Compiler is not supported!
|
#error Compiler is not supported!
|
||||||
#endif
|
#endif
|
||||||
#elif defined(_MSC_VER)
|
#elif defined(_MSC_VER)
|
||||||
#if (_MSC_VER == 1911)
|
#if (_MSC_VER == 1912)
|
||||||
|
#if(_MSC_FULL_VER == 191225830)
|
||||||
|
"MSVC 2017.5";
|
||||||
|
#else
|
||||||
|
#error Compiler version is not supported yet!
|
||||||
|
#endif
|
||||||
|
#elif (_MSC_VER == 1911)
|
||||||
#if((_MSC_FULL_VER >= 191125542) && (_MSC_FULL_VER <= 191125547))
|
#if((_MSC_FULL_VER >= 191125542) && (_MSC_FULL_VER <= 191125547))
|
||||||
"MSVC 2017.4";
|
"MSVC 2017.4";
|
||||||
#elif((_MSC_FULL_VER >= 191125506) && (_MSC_FULL_VER <= 191125508))
|
#elif((_MSC_FULL_VER >= 191125506) && (_MSC_FULL_VER <= 191125508))
|
||||||
|
@ -311,8 +311,8 @@ void MUtils::UpdateChecker::testMirrorsList(void)
|
|||||||
mirrorList << QString::fromLatin1(update_mirrors[i]);
|
mirrorList << QString::fromLatin1(update_mirrors[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
qDebug("\n[Known Hosts]");
|
qDebug("\n[Mirror Sites]");
|
||||||
log("Testing all known hosts...", "", "---");
|
log("Testing all known mirror sites...", "", "---");
|
||||||
|
|
||||||
UpdateCheckerInfo updateInfo;
|
UpdateCheckerInfo updateInfo;
|
||||||
while (!mirrorList.isEmpty())
|
while (!mirrorList.isEmpty())
|
||||||
|
Loading…
Reference in New Issue
Block a user