2021-04-25 00:28:26 +02:00
|
|
|
{
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
2021-05-01 01:06:38 +02:00
|
|
|
"type": "shell",
|
2021-04-25 00:28:26 +02:00
|
|
|
"label": "Build project",
|
2021-05-01 17:48:48 +02:00
|
|
|
"command": "make clean; make",
|
2021-04-25 00:28:26 +02:00
|
|
|
"options": {
|
|
|
|
"cwd": "${workspaceFolder}"
|
|
|
|
},
|
|
|
|
"problemMatcher": [
|
|
|
|
"$gcc"
|
|
|
|
],
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
2021-05-01 01:06:38 +02:00
|
|
|
"presentation": {
|
|
|
|
"reveal": "always",
|
|
|
|
"panel": "new"
|
|
|
|
},
|
2021-04-25 00:28:26 +02:00
|
|
|
"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"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|