Sane defaults

This commit is contained in:
Luke 2022-04-03 17:50:02 -07:00
commit 9218754f23
9 changed files with 118 additions and 0 deletions

19
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,19 @@
{
"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"
}