32 lines
790 B
JSON
32 lines
790 B
JSON
|
{
|
||
|
"tasks": [
|
||
|
{
|
||
|
"type": "cppbuild",
|
||
|
"label": "C/C++: make сборка",
|
||
|
"command": "make",
|
||
|
"args": [
|
||
|
"${input:target}"
|
||
|
],
|
||
|
"options": {
|
||
|
"cwd": "${workspaceRoot}"
|
||
|
},
|
||
|
"problemMatcher": [
|
||
|
"$gcc"
|
||
|
],
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
},
|
||
|
"detail": "Задача создана отладчиком."
|
||
|
}
|
||
|
],
|
||
|
"inputs": [
|
||
|
{
|
||
|
"id": "target",
|
||
|
"description": "Цель сборки (all, list, clean)",
|
||
|
"default": "all",
|
||
|
"type": "promptString"
|
||
|
},
|
||
|
],
|
||
|
"version": "2.0.0"
|
||
|
}
|