CoreUtils/.vscode/tasks.json
2020-11-07 17:25:37 -08:00

26 lines
528 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "g++ build active file",
"command": "/usr/bin/g++",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}"
],
"options": {
"cwd": "/home/barant/Development/HTTPServer/"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}