mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-23 19:25:35 +08:00
build all script
This commit is contained in:
parent
71a1e77fe7
commit
93eb6b4d31
@ -15,9 +15,10 @@ chmod +777 premake5 # do we really need this?
|
|||||||
cd GBE_Build
|
cd GBE_Build
|
||||||
# you can select individual or all
|
# you can select individual or all
|
||||||
|
|
||||||
# individual
|
# make config=debug_x32
|
||||||
#make config=debug_x32
|
make config=debug_x32 && make config=debug_x64
|
||||||
# all
|
make config=release_x32 && make config=release_x64
|
||||||
make
|
make config=experimentaldebug_x32 && make config=experimentaldebug_x64
|
||||||
|
make config=experimentalrelease_x32 && make config=experimentalrelease_x64
|
||||||
|
|
||||||
cd ..
|
cd ..
|
@ -22,6 +22,26 @@ if "%my_vs_path%"=="" (
|
|||||||
)
|
)
|
||||||
:: Set configuration and platform here :)
|
:: Set configuration and platform here :)
|
||||||
|
|
||||||
|
:: manual config for all remove later
|
||||||
|
call %my_vs_path% GBE_Build\GBE.sln /p:Configuration=Debug /p:Platform=x64 -v:n
|
||||||
|
call %my_vs_path% GBE_Build\GBE.sln /p:Configuration=Debug /p:Platform=Win32 -v:n
|
||||||
|
call %my_vs_path% GBE_Build\GBE.sln /p:Configuration=Release /p:Platform=x64 -v:n
|
||||||
|
call %my_vs_path% GBE_Build\GBE.sln /p:Configuration=Release /p:Platform=Win32 -v:n
|
||||||
|
call %my_vs_path% GBE_Build\GBE.sln /p:Configuration=ExperimentalDebug /p:Platform=x64 -v:n
|
||||||
|
call %my_vs_path% GBE_Build\GBE.sln /p:Configuration=ExperimentalDebug /p:Platform=Win32 -v:n
|
||||||
|
call %my_vs_path% GBE_Build\GBE.sln /p:Configuration=ExperimentalRelease /p:Platform=x64 -v:n
|
||||||
|
call %my_vs_path% GBE_Build\GBE.sln /p:Configuration=ExperimentalRelease /p:Platform=Win32 -v:n
|
||||||
|
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
:: exit with error
|
||||||
|
:end_script_with_err
|
||||||
|
popd
|
||||||
|
endlocal & (
|
||||||
|
exit /b 1
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
:: -v:n make it so we can actually see what commands it runs
|
:: -v:n make it so we can actually see what commands it runs
|
||||||
call %my_vs_path% GBE_Build\GBE.sln /p:Configuration=ExperimentalDebug /p:Platform=x64 -v:n
|
call %my_vs_path% GBE_Build\GBE.sln /p:Configuration=ExperimentalDebug /p:Platform=x64 -v:n
|
||||||
::call %my_vs_path% GBE_Build\GBE.sln
|
::call %my_vs_path% GBE_Build\GBE.sln
|
||||||
@ -32,12 +52,4 @@ if %_exit% equ 0 (
|
|||||||
::call "%signer_tool%"
|
::call "%signer_tool%"
|
||||||
) else (
|
) else (
|
||||||
goto :end_script_with_err
|
goto :end_script_with_err
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:: exit with error
|
|
||||||
:end_script_with_err
|
|
||||||
popd
|
|
||||||
endlocal & (
|
|
||||||
exit /b 1
|
|
||||||
)
|
)
|
Loading…
Reference in New Issue
Block a user