diff options
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index aaaa6be..bc8c6e0 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,6 +5,7 @@ "version": "0.2.0",
"configurations": [
+
{
"name": "Python",
"type": "python",
@@ -19,9 +20,10 @@ // "mainClass": "Driver"
// },
{
- "name": "C++ (make sure to build default)",
+ "name": "C++",
"type": "cppdbg",
"request": "launch",
+ "preLaunchTask": "Build c++",
"program": "${workspaceFolder}/debug",
"args": [],
"stopAtEntry": false,
@@ -29,6 +31,7 @@ "environment": [],
"externalConsole": false,
"MIMode": "gdb",
+ //"miDebuggerPath": "/usr/bin/gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
|