{ "version": "0.2.0", "configurations": [ { "name": "(gdb) Launch", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/boat_sim.exe", "args": [], "stopAtEntry": true, "cwd": "${workspaceFolder}", "environment": [], "externalConsole": false, "preLaunchTask": "Build", "windows": { "MIMode": "gdb", "miDebuggerPath": "${workspaceFolder}/../mingw64/bin/gdb.exe", "setupCommands": [ { "description": "Enable pretty-printing for gdb", "text": "-enable-pretty-printing", "ignoreFailures": true }, { "description": "Reduce gdb verbosity", "text": "set print thread-events on", "ignoreFailures": true } ], "logging": { "trace": false, "traceResponse": false, "engineLogging": false } } } ] }