38 lines
971 B
JSON
38 lines
971 B
JSON
{
|
|
"tasks": [
|
|
{
|
|
"type": "shell",
|
|
"label": "Clean",
|
|
"command": "rm -f ${fileDirname}/out"
|
|
},
|
|
{
|
|
"type": "cppbuild",
|
|
"label": "Builder",
|
|
"dependsOn": [
|
|
"Clean"
|
|
],
|
|
"command": "/usr/bin/gcc",
|
|
"args": [
|
|
"-fdiagnostics-color=always",
|
|
"-g",
|
|
"${workspaceFolder}/main.c",
|
|
"-o",
|
|
//include ncurses
|
|
"${fileDirname}/${fileBasenameNoExtension}",
|
|
"-lncurses"
|
|
],
|
|
"options": {
|
|
"cwd": "${fileDirname}"
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"detail": "Task generated by Debugger."
|
|
}
|
|
],
|
|
"version": "2.0.0"
|
|
} |