VScode config files

This commit is contained in:
Ben
2018-12-07 19:00:02 +00:00
parent b786ded5b7
commit cb5914e0c0
3 changed files with 87 additions and 2 deletions

24
.vscode/tasks.json vendored
View File

@@ -4,9 +4,29 @@
"version": "2.0.0",
"tasks": [
{
"label": "echo",
"label": "Cmake and build",
"type": "shell",
"command": "echo Hello"
"command": "cmake .; make"
},
{
"label": "build",
"type": "shell",
"command": "make"
},
{
"label": "build and run",
"type": "shell",
"command": "make; cd bin; ./resource-monitor; cd .."
},
{
"label": "Cmake, build and run",
"type": "shell",
"command": "cmake .; make; cd bin; ./resource-monitor; cd .."
},
{
"label": "run",
"type": "shell",
"command": "cd bin; ./resource-monitor; cd .."
}
]
}