diff options
| author | Dominik Kaiser | 2025-01-20 18:49:21 +0100 |
|---|---|---|
| committer | GitHub | 2025-01-20 18:49:21 +0100 |
| commit | ee1ea5ebfd335580cae3f05c814887547e10ac2b (patch) | |
| tree | b257a3786ded25e3d1bd9b1071a85cd3b6fe9f60 /.vscode/tasks.json | |
| parent | 4e249399780b53dad6fa1bf6db8a7c6d32ee2d13 (diff) | |
| parent | 9fa887da20e409c2f25fac44b57f999e508a30ea (diff) | |
| download | minishell-ee1ea5ebfd335580cae3f05c814887547e10ac2b.tar.gz minishell-ee1ea5ebfd335580cae3f05c814887547e10ac2b.zip | |
Merge branch 'miau' into some-fixes
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 |
