Add build task to VS Code project

This commit is contained in:
kayomn 2023-02-24 22:54:20 +00:00
parent 4cd950a613
commit 02e202cb3b

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

@ -0,0 +1,25 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "process",
"command": "python3",
"args": ["${workspaceFolder}/build.py"],
"problemMatcher": "$gcc",
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": true,
"revealProblems": "onProblem"
},
"group": {
"kind": "build",
"isDefault": true
},
}
]
}