Add makefile and vscode tasks

This commit is contained in:
2026-01-07 07:37:59 +01:00
parent 997b165890
commit 950e488190
5 changed files with 122 additions and 4 deletions

19
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,19 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "make",
"args": ["build"],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "shared"
}
}
]
}