From bc5fa794b96049e39e7fc1192137db36e1dc4dc8 Mon Sep 17 00:00:00 2001 From: Nicholas Vavilov Date: Tue, 26 Feb 2013 15:01:48 +0200 Subject: [PATCH] build: add support for Visual Studio 2012 Closes #722 --- vcbuild.bat | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/vcbuild.bat b/vcbuild.bat index 2165bda56..1b2f865a6 100644 --- a/vcbuild.bat +++ b/vcbuild.bat @@ -41,6 +41,14 @@ shift goto next-arg :args-done +@rem Look for Visual Studio 2012 +if not defined VS110COMNTOOLS goto vc-set-2010 +if not exist "%VS110COMNTOOLS%\..\..\vc\vcvarsall.bat" goto vc-set-2010 +call "%VS110COMNTOOLS%\..\..\vc\vcvarsall.bat" %vs_toolset% +set GYP_MSVS_VERSION=2012 +goto select-target + +:vc-set-2010 @rem Look for Visual Studio 2010 if not defined VS100COMNTOOLS goto vc-set-2008 if not exist "%VS100COMNTOOLS%\..\..\vc\vcvarsall.bat" goto vc-set-2008