Files
Binx/.vscode/tasks.json

24 lines
612 B
JSON
Raw Normal View History

2018-10-19 00:45:50 +02:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "shell",
"command": "make",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$rgbdserror"
},
{
"label": "Clean",
"type": "shell",
"command": "make clean",
"group": "none",
"problemMatcher": "$rgbdserror"
}
]
}