valveboard/examples/stm32f103/.vscode/tasks.json
2021-11-22 00:34:34 +08:00

54 lines
816 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "debug",
"command": "make",
"args": [
"-j12",
"DEBUG=1",
"TARGET=${workspaceRootFolderName}"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
]
},
{
"type": "shell",
"label": "release",
"command": "make",
"args": [
"-j12",
"DEBUG=0",
"TARGET=${workspaceRootFolderName}"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
],
"dependsOn": "clean"
},
{
"type": "shell",
"label": "clean",
"command": "make",
"group": {
"kind": "build",
"isDefault": true
},
"args": [
"clean",
"TARGET=${workspaceRootFolderName}"
],
"problemMatcher": []
}
]
}