Add task integration for IDE VS Code

This commit is contained in:
Thomas Klaehn 2019-07-09 14:20:06 +02:00
parent 1a6c514170
commit 614a1a73f8

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

@ -0,0 +1,25 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"type":"shell",
"command": "make",
"echoCommand": true,
"problemMatcher": {
"base": "gcc",
},
"tasks": [
{
"label": "all",
"args": ["all"],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "clean",
"args": ["clean"],
}
]
}