From 13b885db154f3479a4ceeb18c3cf355a479ebfa9 Mon Sep 17 00:00:00 2001 From: Dimitar Dobrev Date: Tue, 20 Aug 2013 23:44:16 +0300 Subject: [PATCH] Revert "Remove VS2010 support." This reverts commit d48fdf654d148613b6a9f84301cad3872c869310. Signed-off-by: Dimitar Dobrev --- build/GenerateProjects.bat | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/build/GenerateProjects.bat b/build/GenerateProjects.bat index af11bc2f..8d4afefa 100644 --- a/build/GenerateProjects.bat +++ b/build/GenerateProjects.bat @@ -5,20 +5,26 @@ goto menu echo Build Project Generator: echo. echo [0] Clean -echo [1] Visual C++ 2012 -echo [2] GNU Make +echo [1] Visual C++ 2010 +echo [2] Visual C++ 2012 +echo [3] GNU Make echo. :choice set /P C="Choice: " -if "%C%"=="2" goto gmake -if "%C%"=="1" goto vs2012 +if "%C%"=="3" goto gmake +if "%C%"=="2" goto vs2012 +if "%C%"=="1" goto vs2010 if "%C%"=="0" goto clean :clean "premake4" --file=premake4.lua clean goto quit +:vs2010 +"premake4" --file=premake4.lua vs2010 +goto quit + :vs2012 "premake4" --file=premake4.lua vs2012 goto quit