summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Wang2021-04-03 17:10:01 -0500
committerAnthony Wang2021-04-03 17:10:01 -0500
commit672f96f83810e09aead6e830a0ed67eca10f9b1c (patch)
tree914bbed48e49e01f18e69673f00c189f657fe695
parent79c9a77fba313608a37e426de1a7985153183924 (diff)
Update .vscode stuff
-rw-r--r--.vscode/launch.json2
-rw-r--r--.vscode/tasks.json4
2 files changed, 3 insertions, 3 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 1eac2a2..b374df0 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -11,7 +11,7 @@
"target": "${fileDirname}/${fileBasenameNoExtension}",
"cwd": "${workspaceRoot}",
"valuesFormatting": "prettyPrinters",
- "preLaunchTask": "g++ build active file"
+ "preLaunchTask": "g++ build active file",
}
]
} \ No newline at end of file
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 924320d..bea53fb 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -7,11 +7,11 @@
"type": "shell",
"label": "g++ build active file",
"command": "g++",
- "args": ["-g", "${file}", "-o", "${fileDirname}/${fileBasenameNoExtension}"],
+ "args": ["${file}", "-o", "${fileDirname}/${fileBasenameNoExtension}", "-g3", "-fcompare-debug-second"],
"group": {
"kind": "build",
"isDefault": true
- }
+ }
}
]
} \ No newline at end of file