gnostr_relay_proxy/.vscode/tasks.json
2023-11-28 15:03:21 +00:00

26 lines
692 B
JSON

{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: clang build active file",
"command": "/opt/homebrew/opt/llvm/bin/clang",
"args": [
"-fcolor-diagnostics",
"-fansi-escape-codes",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": "build",
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}