mybox/.vscode/tasks.json
2022-07-02 17:30:47 -07:00

19 lines
No EOL
484 B
JSON

{
"tasks": [
{
"type": "shell",
"label": "C/C++: g++ build workspace project",
"command": "${workspaceFolder}/build.sh",
"options": {
"cwd": "${workspaceFolder}"
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$gcc",
"detail": "compiler: /usr/bin/g++"
}
],
"version": "2.0.0"
}