mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
10 lines
226 B
Batchfile
Executable file
10 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
|