Add VSCode files

This commit is contained in:
2018-01-29 23:44:12 -06:00
parent 3600d88987
commit 1692142bae
4 changed files with 127 additions and 0 deletions

16
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,16 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "cmake --build ${workspaceFolder}/build/current --target install",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}