stm32_devcontainer/.vscode/tasks.json

19 lines
514 B
JSON
Raw Normal View History

2024-06-18 11:25:09 +02:00
{
"version": "2.0.0",
"tasks": [
{
"label": "build_vn200",
"type": "shell",
"command": "make -C /home/stm32_devcontainer/projects/${env:PROJECT_NAME_VN200}/build", // or any other build command
2024-06-18 11:25:09 +02:00
"args": [],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
],
"detail": "Generated task by Debugger."
}
]
}