Browse Source

Update the build bat to support VS 2012.

pull/1/head
triton 13 years ago
parent
commit
870e888173
  1. 8
      build/GenerateProjects.bat

8
build/GenerateProjects.bat

@ -6,7 +6,7 @@ echo Build Project Generator:
echo. echo.
echo [0] Clean echo [0] Clean
echo [1] Visual C++ 2010 echo [1] Visual C++ 2010
echo [2] Visual C++ 2008 echo [2] Visual C++ 2012
echo [3] CodeLite echo [3] CodeLite
echo [4] GNU Make echo [4] GNU Make
echo. echo.
@ -15,7 +15,7 @@ echo.
set /P C="Choice: " set /P C="Choice: "
if "%C%"=="4" goto gmake if "%C%"=="4" goto gmake
if "%C%"=="3" goto codelite if "%C%"=="3" goto codelite
if "%C%"=="2" goto vs2008 if "%C%"=="2" goto vs2012
if "%C%"=="1" goto vs2010 if "%C%"=="1" goto vs2010
if "%C%"=="0" goto clean if "%C%"=="0" goto clean
@ -27,8 +27,8 @@ goto quit
"premake4" --file=premake4.lua vs2010 "premake4" --file=premake4.lua vs2010
goto quit goto quit
:vs2008 :vs2012
"premake4" --file=premake4.lua vs2008 "premake4" --file=premake4.lua vs2012
goto quit goto quit
:codelite :codelite

Loading…
Cancel
Save