diff options
| author | Christopher Uhlig | 2025-01-20 17:34:02 +0100 |
|---|---|---|
| committer | Christopher Uhlig | 2025-01-20 17:34:02 +0100 |
| commit | 634a3b84b31cbcc5c0c665338e1ef1eb49f25e5d (patch) | |
| tree | a30f4d0c47a636c822e97efc2678b61d3e2c3dad /.vscode/tasks.json | |
| parent | 8f5abcdb257393a2e576fe382835e8e060662834 (diff) | |
| download | minishell-634a3b84b31cbcc5c0c665338e1ef1eb49f25e5d.tar.gz minishell-634a3b84b31cbcc5c0c665338e1ef1eb49f25e5d.zip | |
fixed a bunch of stuff
Diffstat (limited to '.vscode/tasks.json')
| -rw-r--r-- | .vscode/tasks.json | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..4ede37a --- /dev/null +++ b/.vscode/tasks.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 |
