vscode: integrate rebuild script with vscode

This commit is contained in:
Veneficium 2024-11-05 21:19:36 +01:00
parent 75ef02c518
commit e68528df79
2 changed files with 23 additions and 0 deletions

21
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,21 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Rebuild",
"type": "shell",
"command": "./scripts/rebuild.sh",
"presentation": {
"reveal": "always",
"panel": "new",
"focus": true,
"showReuseMessage": false
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}