Files
2018-12-07 19:00:02 +00:00

32 lines
861 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Cmake and build",
"type": "shell",
"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 .."
}
]
}