ECG/.vscode/tasks.json
2019-04-19 14:00:50 +02:00

40 lines
869 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build Exercise 1",
"type": "shell",
"command": "cd exercise1 && meson . build/ && cd build && ninja",
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": true
}
},
{
"label": "Run Exercise 1",
"type": "shell",
"command": "exercise1/build/./ecg_tree",
"dependsOn": "Build Exercise 1",
"problemMatcher": []
},
{
"type": "shell",
"label": "g++ build active file",
"command": "/usr/bin/g++",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "/usr/bin"
}
}
]
}