Add support for MSVC 11 (a.k.a. MSVS 2012) to MSVC-specific setup.h.

Use vc110 prefix for VC11.

Closes #14366.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71638 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2012-06-01 22:34:21 +00:00
parent 0c9dd3b69b
commit 41087dc90a

View File

@ -60,6 +60,8 @@
#define wxCOMPILER_PREFIX vc90
#elif _MSC_VER == 1600
#define wxCOMPILER_PREFIX vc100
#elif _MSC_VER == 1700
#define wxCOMPILER_PREFIX vc110
#else
#error "Unknown MSVC compiler version, please report to wx-dev."
#endif