SP8EBC-ParaTNC/.vscode/tasks.json

35 wiersze
893 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "make STM32L476_ParaMETEO",
"type": "shell",
"command": "make",
"args": [
"all"
],
"options": {
"cwd": "${workspaceFolder}/STM32L476_ParaMETEO"
},
"problemMatcher": [
"$gcc"
]
},
{
"label": "clean STM32L476_ParaMETEO",
"type": "shell",
"command": "make",
"args": [
"clean"
],
"options": {
"cwd": "${workspaceFolder}/STM32L476_ParaMETEO"
},
"problemMatcher": [
"$gcc"
]
}
]
}