mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-11-08 01:10:40 +00:00
a840ed06b7
update android qt app icon add mingw build batch and .gitignore
22 lines
616 B
Batchfile
22 lines
616 B
Batchfile
@echo off
|
||
title ‘¡®àª i2pd
|
||
|
||
set "WD=C:\msys64"
|
||
set CHERE_INVOKING=enabled_from_arguments
|
||
set MSYSCON=mintty.exe
|
||
|
||
echo ‘¡®àª i2pd ¤«ï win32. <20> ¦¬¨â¥ Enter ¯®á«¥ ®ª®ç ¨ï ª®¬¯¨«ï樨...
|
||
set "MSYSTEM=MINGW32"
|
||
set "CONTITLE=MinGW x32"
|
||
start "%CONTITLE%" /WAIT C:\msys64\usr\bin\mintty.exe -i /msys2.ico /usr/bin/bash --login build_mingw.sh
|
||
pause
|
||
|
||
echo ‘¡®àª i2pd ¤«ï win64. <20> ¦¬¨â¥ Enter ¯®á«¥ ®ª®ç ¨ï ª®¬¯¨«ï樨...
|
||
set "MSYSTEM=MINGW64"
|
||
set "CONTITLE=MinGW x64"
|
||
start "%CONTITLE%" /WAIT C:\msys64\usr\bin\mintty.exe -i /msys2.ico /usr/bin/bash --login build_mingw.sh
|
||
pause
|
||
|
||
echo ‘¡®àª § ¢¥àè¥ ...
|
||
pause
|
||
exit /b 0 |