aboutsummaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-10-01 13:40:56 +0200
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-10-01 13:40:56 +0200
commit4628638f952f882e494788ca1cf880a029eba5ab (patch)
tree894b2ef38569dc16415ea2abaeaac2ee0332404f /.vscode/tasks.json
parentf4560e02f703f1c6f857c8e5af63fa9fc4ca6438 (diff)
first try at events
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..05054c5
--- /dev/null
+++ b/.vscode/tasks.json
@@ -0,0 +1,28 @@
+{
+ "tasks": [
+ {
+ "type": "cppbuild",
+ "label": "C/C++: g++ build active file",
+ "command": "/usr/bin/g++",
+ "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