SO2019/.vscode/tasks.json

25 lines
645 B
JSON
Raw Permalink Normal View History

2019-11-23 23:22:02 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "gcc-8 build active file",
"command": "/usr/bin/gcc-8",
"args": [
"-g",
"${file}",
"-o",
"/home/zmiguel/TP/${fileBasenameNoExtension}"
],
"options": {
"cwd": "/usr/bin"
},
"problemMatcher": [
"$gcc"
],
"group": "build"
}
]
}