Google-Code-Jam/.vscode/tasks.json

27 lines
434 B
JSON
Raw Permalink Normal View History

2020-05-12 02:04:12 +00:00
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "g++ build active file",
"command": "/usr/bin/g++",
"args": [
"-g",
"${file}",
"-std=c++17",
"-o",
"${fileDirname}/.vscode/${fileBasenameNoExtension}"
],
"options": {
"cwd": "/usr/bin"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}