From 41087dc90afff1535953044dc1b0505f64e6212e Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 1 Jun 2012 22:34:21 +0000 Subject: [PATCH] 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 --- include/msvc/wx/setup.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/msvc/wx/setup.h b/include/msvc/wx/setup.h index 4fb08d2013..06fa7d7ddc 100644 --- a/include/msvc/wx/setup.h +++ b/include/msvc/wx/setup.h @@ -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