mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

- Don't bake modified PATH in to build.ninja; instead set it at run time. - Add win audio in build.rs, as doing it in run.bat results in it being added multiple times when you run multiple times.
10 lines
227 B
Batchfile
Executable file
10 lines
227 B
Batchfile
Executable file
@echo off
|
|
pushd "%~dp0"
|
|
|
|
set PYTHONWARNINGS=default
|
|
set PYTHONPYCACHEPREFIX=out\pycache
|
|
set ANKIDEV=1
|
|
|
|
call tools\ninja pylib qt extract:win_amd64_audio || exit /b 1
|
|
.\out\pyenv\scripts\python tools\run.py %* || exit /b 1
|
|
popd
|