Streamlined Android build process and install/uninstall batch files (#97)
This commit is contained in:
parent
dcb161bcae
commit
1288672fd9
20 changed files with 125 additions and 44 deletions
14
android/install-all.bat
Normal file
14
android/install-all.bat
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
@echo off
|
||||
SET /P ANSWER=Install all vulkan examples on attached device (Y/N)?
|
||||
if /i {%ANSWER%}=={y} (goto :install)
|
||||
if /i {%ANSWER%}=={yes} (goto :install)
|
||||
goto :exit
|
||||
|
||||
:install
|
||||
call build-all.bat -deploy
|
||||
goto finish
|
||||
|
||||
:exit
|
||||
echo Cancelled
|
||||
|
||||
:finish
|
||||
Loading…
Add table
Add a link
Reference in a new issue