mirror of
https://github.com/glest/glest-source.git
synced 2025-08-30 11:19:48 +02:00
Added support for nopause parameter in Windows build
This commit is contained in:
@@ -2,4 +2,4 @@
|
||||
Echo Compiling for 32-bit using Visual Studio 2015...
|
||||
SET VCVARS_PLATFORM=amd64_x86
|
||||
SET FOLDER_NAME=vs2015-32
|
||||
call .\build-zg.bat 2015-32 deps
|
||||
call .\build-zg.bat 2015-32 deps "%~1"
|
@@ -2,4 +2,4 @@
|
||||
Echo Compiling for 64-bit using Visual Studio 2015...
|
||||
SET VCVARS_PLATFORM=amd64
|
||||
SET FOLDER_NAME=vs2015-64
|
||||
call .\build-zg.bat 2015-64 deps
|
||||
call .\build-zg.bat 2015-64 deps "%~1"
|
@@ -2,4 +2,4 @@
|
||||
Echo Compiling for 32-bit using Visual Studio 2017...
|
||||
SET VCVARS_PLATFORM=amd64_x86
|
||||
SET FOLDER_NAME=vs2017-32
|
||||
call .\build-zg.bat 2017-32 deps
|
||||
call .\build-zg.bat 2017-32 deps "%~1"
|
@@ -2,4 +2,4 @@
|
||||
Echo Compiling for 64-bit using Visual Studio 2017...
|
||||
SET VCVARS_PLATFORM=amd64
|
||||
SET FOLDER_NAME=vs2017-64
|
||||
call .\build-zg.bat 2017-64 deps
|
||||
call .\build-zg.bat 2017-64 deps "%~1"
|
@@ -2,4 +2,4 @@
|
||||
Echo Compiling for 32-bit using Visual Studio 2015...
|
||||
SET VCVARS_PLATFORM=amd64_x86
|
||||
SET FOLDER_NAME=vs2015-32
|
||||
call .\build-zg.bat 2015-32 nodeps
|
||||
call .\build-zg.bat 2015-32 nodeps "%~1"
|
@@ -2,4 +2,4 @@
|
||||
Echo Compiling for 64-bit using Visual Studio 2015...
|
||||
SET VCVARS_PLATFORM=amd64
|
||||
SET FOLDER_NAME=vs2015-64
|
||||
call .\build-zg.bat 2015-64 nodeps
|
||||
call .\build-zg.bat 2015-64 nodeps "%~1"
|
@@ -2,4 +2,4 @@
|
||||
Echo Compiling for 32-bit using Visual Studio 2017...
|
||||
SET VCVARS_PLATFORM=amd64_x86
|
||||
SET FOLDER_NAME=vs2017-32
|
||||
call .\build-zg.bat 2017-32 nodeps
|
||||
call .\build-zg.bat 2017-32 nodeps "%~1"
|
@@ -2,4 +2,4 @@
|
||||
Echo Compiling for 64-bit using Visual Studio 2017...
|
||||
SET VCVARS_PLATFORM=amd64
|
||||
SET FOLDER_NAME=vs2017-64
|
||||
call .\build-zg.bat 2017-64 nodeps
|
||||
call .\build-zg.bat 2017-64 nodeps "%~1"
|
@@ -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 Thanks for trying out ZetaGlest.
|
||||
ECHO.
|
||||
pause
|
||||
|
||||
if NOT "%~3"=="nopause" pause
|
@@ -1,3 +1,12 @@
|
||||
@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\vs2017\glest.ini
|
||||
copy /y glest_release.ini bin\vs2017\glest.ini
|
||||
Echo.
|
||||
ECHO ...and done
|
||||
Echo.
|
||||
if NOT "%~1"=="nopause" pause
|
Reference in New Issue
Block a user