Added support for nopause parameter in Windows build

This commit is contained in:
mathusummut
2018-05-20 18:46:45 +02:00
parent f4441b9d7e
commit 1f057d6a7d
10 changed files with 20 additions and 10 deletions

View File

@@ -2,4 +2,4 @@
Echo Compiling for 32-bit using Visual Studio 2015... Echo Compiling for 32-bit using Visual Studio 2015...
SET VCVARS_PLATFORM=amd64_x86 SET VCVARS_PLATFORM=amd64_x86
SET FOLDER_NAME=vs2015-32 SET FOLDER_NAME=vs2015-32
call .\build-zg.bat 2015-32 deps call .\build-zg.bat 2015-32 deps "%~1"

View File

@@ -2,4 +2,4 @@
Echo Compiling for 64-bit using Visual Studio 2015... Echo Compiling for 64-bit using Visual Studio 2015...
SET VCVARS_PLATFORM=amd64 SET VCVARS_PLATFORM=amd64
SET FOLDER_NAME=vs2015-64 SET FOLDER_NAME=vs2015-64
call .\build-zg.bat 2015-64 deps call .\build-zg.bat 2015-64 deps "%~1"

View File

@@ -2,4 +2,4 @@
Echo Compiling for 32-bit using Visual Studio 2017... Echo Compiling for 32-bit using Visual Studio 2017...
SET VCVARS_PLATFORM=amd64_x86 SET VCVARS_PLATFORM=amd64_x86
SET FOLDER_NAME=vs2017-32 SET FOLDER_NAME=vs2017-32
call .\build-zg.bat 2017-32 deps call .\build-zg.bat 2017-32 deps "%~1"

View File

@@ -2,4 +2,4 @@
Echo Compiling for 64-bit using Visual Studio 2017... Echo Compiling for 64-bit using Visual Studio 2017...
SET VCVARS_PLATFORM=amd64 SET VCVARS_PLATFORM=amd64
SET FOLDER_NAME=vs2017-64 SET FOLDER_NAME=vs2017-64
call .\build-zg.bat 2017-64 deps call .\build-zg.bat 2017-64 deps "%~1"

View File

@@ -2,4 +2,4 @@
Echo Compiling for 32-bit using Visual Studio 2015... Echo Compiling for 32-bit using Visual Studio 2015...
SET VCVARS_PLATFORM=amd64_x86 SET VCVARS_PLATFORM=amd64_x86
SET FOLDER_NAME=vs2015-32 SET FOLDER_NAME=vs2015-32
call .\build-zg.bat 2015-32 nodeps call .\build-zg.bat 2015-32 nodeps "%~1"

View File

@@ -2,4 +2,4 @@
Echo Compiling for 64-bit using Visual Studio 2015... Echo Compiling for 64-bit using Visual Studio 2015...
SET VCVARS_PLATFORM=amd64 SET VCVARS_PLATFORM=amd64
SET FOLDER_NAME=vs2015-64 SET FOLDER_NAME=vs2015-64
call .\build-zg.bat 2015-64 nodeps call .\build-zg.bat 2015-64 nodeps "%~1"

View File

@@ -2,4 +2,4 @@
Echo Compiling for 32-bit using Visual Studio 2017... Echo Compiling for 32-bit using Visual Studio 2017...
SET VCVARS_PLATFORM=amd64_x86 SET VCVARS_PLATFORM=amd64_x86
SET FOLDER_NAME=vs2017-32 SET FOLDER_NAME=vs2017-32
call .\build-zg.bat 2017-32 nodeps call .\build-zg.bat 2017-32 nodeps "%~1"

View File

@@ -2,4 +2,4 @@
Echo Compiling for 64-bit using Visual Studio 2017... Echo Compiling for 64-bit using Visual Studio 2017...
SET VCVARS_PLATFORM=amd64 SET VCVARS_PLATFORM=amd64
SET FOLDER_NAME=vs2017-64 SET FOLDER_NAME=vs2017-64
call .\build-zg.bat 2017-64 nodeps call .\build-zg.bat 2017-64 nodeps "%~1"

View File

@@ -171,4 +171,5 @@ ECHO.
ECHO If build was successful, then output is in bin folder, otherwise scroll up a little to view error messages. ECHO If build was successful, then output is in bin folder, otherwise scroll up a little to view error messages.
ECHO Thanks for trying out ZetaGlest. ECHO Thanks for trying out ZetaGlest.
ECHO. ECHO.
pause
if NOT "%~3"=="nopause" pause

View File

@@ -1,3 +1,12 @@
@echo off @echo off
call build-zg+deps-2015-32.bat nopause
call build-zg+deps-2015-64.bat nopause
call build-zg+deps-2017-32.bat nopause
call build-zg+deps-2017-64.bat nopause
Echo Replacing glest.ini with glest_release.ini...
copy /y glest_release.ini bin\vs2015\glest.ini copy /y glest_release.ini bin\vs2015\glest.ini
copy /y glest_release.ini bin\vs2017\glest.ini copy /y glest_release.ini bin\vs2017\glest.ini
Echo.
ECHO ...and done
Echo.
if NOT "%~1"=="nopause" pause