Advertisement
Guest User

Untitled

a guest
Dec 5th, 2020
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.82 KB | None | 0 0
  1. {
  2.     "version": "0.2.0",
  3.     "configurations": [
  4.         {
  5.             "name": "g++ - Build and debug active file",
  6.             "type": "cppdbg",
  7.             "request": "launch",
  8.             "program": "${fileDirname}/${fileBasenameNoExtension}",
  9.             "args": [],
  10.             "stopAtEntry": false,
  11.             "cwd": "${workspaceFolder}",
  12.             "environment": [],
  13.             "externalConsole": false,
  14.             "MIMode": "gdb",
  15.             "setupCommands": [
  16.                 {
  17.                     "description": "Enable pretty-printing for gdb",
  18.                     "text": "-enable-pretty-printing",
  19.                     "ignoreFailures": true
  20.                 }
  21.             ],
  22.             "preLaunchTask": "C/C++: g++ build active file",
  23.             "miDebuggerPath": "/usr/bin/gdb",
  24.         }
  25.     ]
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement