50 lines
832 B
JSON
50 lines
832 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build STM",
|
|
"type": "process",
|
|
"command": "${command:stm32-for-vscode.build}",
|
|
"options": {
|
|
"cwd": "${workspaceRoot}"
|
|
},
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
]
|
|
},
|
|
{
|
|
"label": "Build Clean STM",
|
|
"type": "process",
|
|
"command": "${command:stm32-for-vscode.cleanBuild}",
|
|
"options": {
|
|
"cwd": "${workspaceRoot}"
|
|
},
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
]
|
|
},
|
|
{
|
|
"label": "Flash STM",
|
|
"type": "process",
|
|
"command": "${command:stm32-for-vscode.flash}",
|
|
"options": {
|
|
"cwd": "${workspaceRoot}"
|
|
},
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
]
|
|
}
|
|
]
|
|
} |