28 lines
598 B
JSON
28 lines
598 B
JSON
{
|
|
"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
|
|
}
|
|
}
|
|
]
|
|
}
|