From b46d3ce5e9cf6b054f9b9f354c74a0cf3fdb729b Mon Sep 17 00:00:00 2001 From: Alexander Shaposhnikov Date: Mon, 23 Oct 2017 19:28:15 +0300 Subject: [PATCH] [CONFIGURE] Add -VS_VER flag (#86) This flag can override the detected version of VS. Usage example: `configure.cmd vssolution -VS_VER 14` --- configure.cmd | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure.cmd b/configure.cmd index ed19d9f5d9e..6b0c5dfbb99 100755 --- a/configure.cmd +++ b/configure.cmd @@ -109,6 +109,11 @@ REM Parse command line parameters set CMAKE_GENERATOR="NMake Makefiles" ) else if /I "%1" == "VSSolution" ( set VS_SOLUTION=1 + REM explicitly set VS version for project generator + if /I "%2" == "-VS_VER" ( + set VS_VERSION=%3 + echo Visual Studio Environment set to !BUILD_ENVIRONMENT!!VS_VERSION!-!ARCH! + ) if "!VS_VERSION!" == "9" ( if "!ARCH!" == "amd64" ( set CMAKE_GENERATOR="Visual Studio 9 2008 Win64"