11 lines
226 B
Batchfile
Executable File
11 lines
226 B
Batchfile
Executable File
@echo off
|
|
pushd "%~dp0\.."
|
|
|
|
set PYTHONWARNINGS=default
|
|
set PYTHONPYCACHEPREFIX=out\pycache
|
|
set ANKIDEV=1
|
|
|
|
call tools\ninja pylib qt pyenv-qt5.15 || exit /b 1
|
|
.\out\pyenv-qt5.15\scripts\python tools\run.py %* || exit /b 1
|
|
popd
|