stm32_devcontainer/.vscode/tasks.json

33 lines
980 B
JSON
Raw Permalink 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"
],
2024-07-13 14:46:20 +02:00
"detail": "Build the code for the VN200"
},
{
"label": "build_epsc",
"type": "shell",
"command": "make -C /home/stm32_devcontainer/projects/${env:PROJECT_NAME_EPSC}/build", // or any other build command
"args": [],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
],
"detail": "Build the code for the EPSC"
2024-06-18 11:25:09 +02:00
}
]
}