anki/.vscode.dist/tasks.json
RumovZ c11e40b11b
Fix Select component not reacting to changed list (#2885)
* Fix Select component not reacting to changed list

Fixes #2882.

* Add msys to path on Windows in VSC settings
2023-12-11 09:12:34 +10:00

28 lines
628 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "ninja",
"command": "ninja",
"args": [
"pylib",
"qt"
],
"windows": {
"command": "bash",
"options": {
"env": {
"PATH": "c:\\msys64\\usr\\bin;${env:Path}"
}
},
"args": [
"ninja",
"pylib",
"qt",
"extract:win_amd64_audio"
]
}
}
]
}