RPiPico-Holonome2023/.vscode/tasks.json

40 lines
1.1 KiB
JSON

{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: arm-none-eabi-gcc générer le fichier actif",
"command": "/usr/bin/arm-none-eabi-gcc",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": "build",
"detail": "Tâche générée par le débogueur."
},
{
"type": "shell",
"command": "cd build; cmake ../; make",
"label": "CMake in build/"
},
{
"type": "shell",
"command": "cd build; cmake ../; make Flash",
"label": "CMake & Flash",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
],
"version": "2.0.0"
}