Files
integration/luprex/.vscode/tasks.json

30 lines
746 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build luprex",
"type": "shell",
"command": "make",
"problemMatcher": {
"base": "$gcc",
"fileLocation": [
"relative",
"${workspaceFolder}"
]
},
"options": {
"cwd": "${workspaceFolder}"
},
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"clear": true,
"reveal": "always",
"panel": "shared",
"revealProblems": "never"
}
}
]
}