cbuild-c/.vscode/tasks.json
2023-11-19 22:35:22 +06:00

24 lines
523 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "build",
"command": "bash",
"args": [
"${workspaceRoot}/build.sh",
"debug"
],
"options": {
"cwd": "${workspaceRoot}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}