59 lines
1.5 KiB
JSON
59 lines
1.5 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build",
|
|
"detail": "Build project",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"args": [
|
|
"-j$(nproc)"
|
|
],
|
|
"group": "build",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": true,
|
|
"panel": "shared",
|
|
"showReuseMessage": true,
|
|
"clear": true
|
|
}
|
|
},
|
|
{
|
|
"label": "Clean",
|
|
"detail": "Clean build directory and executable",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"args": [
|
|
"clean"
|
|
],
|
|
"group": "build",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "never",
|
|
"focus": false,
|
|
"panel": "shared",
|
|
"showReuseMessage": false,
|
|
"clear": true
|
|
}
|
|
},
|
|
{
|
|
"label": "Build Verbose",
|
|
"detail": "Build project with verbosity on",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"args": [
|
|
"VERBOSE=1"
|
|
],
|
|
"group": "build",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": true,
|
|
"panel": "shared",
|
|
"showReuseMessage": true,
|
|
"clear": true
|
|
}
|
|
}
|
|
]
|
|
} |