(360) Add generate_xuis.bat batch file - for generating all the child

XUI files once
This commit is contained in:
twinaphex 2013-05-10 02:31:05 +02:00
parent 722a855be8
commit 53c3f90ec1
1 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,62 @@
@echo off
cd sd
@echo "Creating sd/rarch_quickmenu.xui ..."
call :subroutine_a
@echo "Creating sd/rarch_settings.xui ..."
call :subroutine_b
@echo "Creating sd/rarch_shader_browser.xui ..."
call :subroutine_c
@echo "Creating sd/rarch_filebrowser.xui ..."
call :subroutine_d
@echo "Creating sd/rarch_controls.xui ..."
call :subroutine_e
@echo "Creating sd/rarch_libretrocore_browser.xui ..."
call :subroutine_f
cd ../
cd hd
@echo "Creating hd/rarch_quickmenu.xui ..."
call :subroutine_a
@echo "Creating hd/rarch_settings.xui ..."
call :subroutine_b
@echo "Creating hd/rarch_shader_browser.xui ..."
call :subroutine_c
@echo "Creating hd/rarch_filebrowser.xui ..."
call :subroutine_d
@echo "Creating hd/rarch_controls.xui ..."
call :subroutine_e
@echo "Creating hd/rarch_libretrocore_browser.xui ..."
call :subroutine_f
goto :eof
:subroutine_a
del rarch_quickmenu.xui 2>NUL
call rarch_quickmenu.bat
goto :eof
:subroutine_b
del rarch_settings.xui 2>NUL
call rarch_settings.bat
goto :eof
:subroutine_c
del rarch_shader_browser.xui 2>NUL
call rarch_shader_browser.bat
goto :eof
:subroutine_d
del rarch_filebrowser.xui 2>NUL
call rarch_filebrowser.bat
goto :eof
:subroutine_e
del rarch_controls.xui 2>NUL
call rarch_controls.bat
goto :eof
:subroutine_f
del rarch_libretrocore_browser.xui 2>NUL
call rarch_libretrocore_browser.bat
goto :eof