aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode/tasks.json
diff options
context:
space:
mode:
authorRossTheRoss <mstrapp@protonmail.com>2019-09-23 18:35:04 -0500
committerRossTheRoss <mstrapp@protonmail.com>2019-09-23 18:35:04 -0500
commit9c59d1347cae5a290762bb0dc4a3162c98b3e8f6 (patch)
tree0af0027949844b6d88faf6c9c973a5f5a5bda4f1 /.vscode/tasks.json
parentFix an oopsie (diff)
downloadhomework-9c59d1347cae5a290762bb0dc4a3162c98b3e8f6.tar
homework-9c59d1347cae5a290762bb0dc4a3162c98b3e8f6.tar.gz
homework-9c59d1347cae5a290762bb0dc4a3162c98b3e8f6.tar.bz2
homework-9c59d1347cae5a290762bb0dc4a3162c98b3e8f6.tar.lz
homework-9c59d1347cae5a290762bb0dc4a3162c98b3e8f6.tar.xz
homework-9c59d1347cae5a290762bb0dc4a3162c98b3e8f6.tar.zst
homework-9c59d1347cae5a290762bb0dc4a3162c98b3e8f6.zip
Add VScode stuff for C O N S I S T E N C Y
Diffstat (limited to '')
-rw-r--r--.vscode/tasks.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
new file mode 100644
index 0000000..f029853
--- /dev/null
+++ b/.vscode/tasks.json
@@ -0,0 +1,23 @@
+{
+ // See https://go.microsoft.com/fwlink/?LinkId=733558
+ // for the documentation about the tasks.json format
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "label": "Build c++",
+ "type": "shell",
+ "command": "g++",
+ "args": [
+ "-g",
+ "-Wall",
+ "${file}",
+ "-o",
+ "debug"
+ ],
+ "group": {
+ "kind": "build",
+ "isDefault": true
+ }
+ }
+ ]
+} \ No newline at end of file