gra-projekt/.vscode/tasks.json

28 lines
704 B
JSON
Raw Normal View History

{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: gcc build active file",
"command": "/usr/bin/gcc",
"args": [
"-fdiagnostics-color=always",
"-g",
2022-06-29 21:29:15 +02:00
"${fileDirname}/*.c",
"-o",
2022-06-29 21:29:15 +02:00
"${fileDirname}/../md2"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}