VScode config files
This commit is contained in:
24
.vscode/tasks.json
vendored
24
.vscode/tasks.json
vendored
@@ -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 .."
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user