LedBars/RpiLedBars/.vscode/tasks.json

44 lines
756 B
JSON
Raw Permalink Normal View History

{
"version": "2.0.0",
"tasks": [
{
2021-05-01 01:06:38 +02:00
"type": "shell",
"label": "Build project",
"command": "make clean; make",
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
2021-05-01 01:06:38 +02:00
"presentation": {
"reveal": "always",
"panel": "new"
},
"detail": "compiler: /usr/bin/gcc"
},
{
"type": "cppbuild",
"label": "C/C++: gcc build active file",
"command": "/usr/bin/gcc",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": "build",
"detail": "compiler: /usr/bin/gcc"
}
]
}