23 lines
626 B
JSON
23 lines
626 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build Debug",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"args": ["-j8", "BUILD=debug", "all"],
|
|
"options": { "cwd": "${workspaceFolder}" },
|
|
"group": { "kind": "build", "isDefault": true },
|
|
"problemMatcher": ["$gcc"]
|
|
},
|
|
{
|
|
"label": "Flash DAPLink",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"args": ["BUILD=debug", "flash"],
|
|
"options": { "cwd": "${workspaceFolder}" },
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
}
|