From 132dc458f2fd9a8ada0573e3bc0bfe3e0293b7ba Mon Sep 17 00:00:00 2001 From: Rangel Reale Date: Fri, 11 Dec 2015 15:18:50 -0200 Subject: [PATCH] * Add VS2015 platform --- Foundation/include/Poco/Platform_WIN32.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Foundation/include/Poco/Platform_WIN32.h b/Foundation/include/Poco/Platform_WIN32.h index a720d918a..468b8911c 100644 --- a/Foundation/include/Poco/Platform_WIN32.h +++ b/Foundation/include/Poco/Platform_WIN32.h @@ -57,6 +57,9 @@ #elif (_MSC_VER >= 1800) && (_MSC_VER < 1900) // Visual Studio 2013, MSVC++ 12.0 #define POCO_MSVS_VERSION 2013 #define POCO_MSVC_VERSION 120 +#elif (_MSC_VER >= 1900) && (_MSC_VER < 2000) // Visual Studio 2015, MSVC++ 14.0 + #define POCO_MSVS_VERSION 2015 + #define POCO_MSVC_VERSION 140 #endif