BMLite_Nordic/.vscode/tasks.json
Andrey Perminov f0636d475f Added 'make clean' task
Change-Id: I371f2f19f45f5e5950c9fbdfebbff06cf90c8400
2020-04-21 11:05:28 -07:00

38 lines
1.1 KiB
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "make",
"command": "make",
"args": ["-C", "BMLite_example"],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceFolder}/BMLite_example", "absolute"]
},
"group": {
"kind": "build",
"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"
}
]
}