mirror of
https://github.com/zekexiao/pocketlang.git
synced 2025-03-04 13:15:55 +08:00
19 lines
359 B
Batchfile
19 lines
359 B
Batchfile
@echo off
|
|
|
|
pushd %cd%
|
|
cd %~dp0
|
|
|
|
:: unzip.exe comes with git for windows.
|
|
|
|
if not exist premake5.exe (
|
|
echo premake5.exe not exists, downloading
|
|
echo.
|
|
curl -L https://github.com/premake/premake-core/releases/download/v5.0.0-beta1/premake-5.0.0-beta1-windows.zip --output premake5.zip
|
|
unzip premake5.zip && premake5.zip
|
|
echo.
|
|
)
|
|
|
|
premake5 vs2019
|
|
|
|
popd
|