gra-projekt/.vscode/tasks.json

32 lines
878 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",
2022-07-04 18:02:34 +02:00
"${fileDirname}/md2_impls/*.c",
2022-07-20 17:46:35 +02:00
"${fileDirname}/md2_impls/md2_reference/*.c",
"-o",
2022-07-20 17:46:35 +02:00
"${fileDirname}/../md2",
"-D",
"MD2_DETAILED_BENCHMARK"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}