Added 'make clean' task

Change-Id: I371f2f19f45f5e5950c9fbdfebbff06cf90c8400
This commit is contained in:
Andrey Perminov 2020-04-21 11:05:28 -07:00
parent b86b821549
commit f0636d475f

14
.vscode/tasks.json vendored
View File

@ -19,6 +19,20 @@
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true
} }
},
{
"type": "shell",
"label": "make clean",
"command": "make",
"args": ["-C", "BMLite_example", "clean"],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceFolder}/BMLite_example", "absolute"]
},
"group": "build"
} }
] ]
} }