01/.vscode/tasks.json

32 lines
790 B
JSON
Raw Permalink Normal View History

2022-07-17 08:54:21 +00:00
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: make сборка",
"command": "make",
2022-07-17 08:54:21 +00:00
"args": [
"${input:target}"
2022-07-17 08:54:21 +00:00
],
"options": {
"cwd": "${workspaceRoot}"
2023-03-22 12:06:32 +00:00
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Задача создана отладчиком."
2022-07-17 08:54:21 +00:00
}
],
"inputs": [
{
"id": "target",
"description": "Цель сборки (all, list, clean)",
"default": "all",
"type": "promptString"
},
],
2022-07-17 08:54:21 +00:00
"version": "2.0.0"
}