cobek/.vscode/tasks.json
2023-02-10 13:00:53 +06:00

32 lines
670 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build_cb2c_dbg",
"detail": "build project with debug symbols",
"type": "cppbuild",
"command": "make",
"args": [
"rebuild_kerep",
"build_exec_dbg"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": ["$gcc"],
"group": {
"kind": "build"
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared",
"showReuseMessage": false,
"clear": true
}
}
]
}