15 lines
344 B
Batchfile
Executable File
15 lines
344 B
Batchfile
Executable File
@echo off
|
|
pushd "%~dp0"
|
|
|
|
set PYTHONWARNINGS=default
|
|
set PYTHONPYCACHEPREFIX=out\pycache
|
|
set ANKIDEV=1
|
|
|
|
REM put mpv on the path
|
|
REM run tools\ninja extract:win_amd64_audio to download this
|
|
set PATH=%PATH%;out\extracted\win_amd64_audio
|
|
|
|
call tools\ninja pylib/anki qt/aqt || exit /b 1
|
|
.\out\pyenv\scripts\python tools\run.py %* || exit /b 1
|
|
popd
|