borg_public/.vscode/tasks.json

28 lines
598 B
JSON
Raw Permalink Normal View History

2023-05-29 10:41:03 +02:00
{
"version": "2.0.0",
"tasks": [
{
"label": "Build ARES",
"type": "process",
"command": "nice",
"args": [
"make",
"all"
],
"options": {
"cwd": "${env:ARES_BUILD}"
},
"problemMatcher": {
"base": "$gcc",
"fileLocation": [
"absolute"
]
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}