BMLite_Nordic/.vscode/tasks.json
Andrey Perminov 10e32cc38d New HCP protocol implementation
HCP protocol implementation now in hcp_tiny.c/hcp_tiny.h
Removed old hcp folder
Using  FPC_BEP_RESULT_ codes only

Change-Id: I82ba7fdfbcc6aa01889b81974d4003def3338e65
2020-05-05 17:54:16 -07:00

39 lines
1.2 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": ["absolute", "${workspaceFolder}/MBLite_exapmle"]
"fileLocation": ["relative", "${workspaceFolder}/BMLite_example"]
},
"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"
}
]
}