Abi::hostAbi(): Add MSVC2015.

Silence startup warning:
Unable to completely determine the host ABI (x86-windows-unknown-pe-64bit).

Change-Id: I89aae738d25d7c97f352172c98628ddd0987d6dc
Reviewed-by: Daniel Teske <daniel.teske@theqtcompany.com>
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
This commit is contained in:
Friedemann Kleint
2015-08-19 11:27:31 +02:00
parent cb32ffff85
commit 1f445f8fd6

View File

@@ -752,7 +752,9 @@ Abi Abi::hostAbi()
#if defined (Q_OS_WIN)
os = WindowsOS;
#if _MSC_VER == 1800
#if _MSC_VER == 1900
subos = WindowsMsvc2015Flavor;
#elif _MSC_VER == 1800
subos = WindowsMsvc2013Flavor;
#elif _MSC_VER == 1700
subos = WindowsMsvc2012Flavor;