aboutsummaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
diff options
context:
space:
mode:
authorLadislav Zezula <Ladislav Zezula>2023-06-27 09:50:29 +0200
committerLadislav Zezula <Ladislav Zezula>2023-06-27 09:50:29 +0200
commitf51ee604991743b2eb4a61bc200843d7191d48e7 (patch)
treee9065084d90af06fb73d3714c758cbd9da9e71f3 /.vscode/tasks.json
parentea776a2a9fd88df4c9335feadd19e4c310f78826 (diff)
Added missing files
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r--.vscode/tasks.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
new file mode 100644
index 0000000..4217112
--- /dev/null
+++ b/.vscode/tasks.json
@@ -0,0 +1,28 @@
+{
+ "tasks": [
+ {
+ "type": "cppbuild",
+ "label": "C/C++: cpp build active file",
+ "command": "/usr/bin/cpp",
+ "args": [
+ "-fdiagnostics-color=always",
+ "-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