Skip to content

Instantly share code, notes, and snippets.

@tinwritescode
Created March 22, 2020 11:20
Show Gist options
  • Save tinwritescode/885abc2ac78539734beb992894614f7c to your computer and use it in GitHub Desktop.
Save tinwritescode/885abc2ac78539734beb992894614f7c to your computer and use it in GitHub Desktop.
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/bin/main",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "build"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment