diff options
Diffstat (limited to '.vscode/tasks copy.json')
| -rw-r--r-- | .vscode/tasks copy.json | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.vscode/tasks copy.json b/.vscode/tasks copy.json new file mode 100644 index 0000000..4ede37a --- /dev/null +++ b/.vscode/tasks copy.json @@ -0,0 +1,29 @@ +{ + "tasks": [ + { + "type": "cppbuild", + "label": "C/C++: clang build active file", + "command": "/usr/bin/clang", + "args": [ + "-fcolor-diagnostics", + "-fansi-escape-codes", + "-g", + "${file}", + "-o", + "${fileDirname}/${fileBasenameNoExtension}" + ], + "options": { + "cwd": "${fileDirname}" + }, + "problemMatcher": [ + "$gcc" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "detail": "Task generated by Debugger." + } + ], + "version": "2.0.0" +}
\ No newline at end of file |
