Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "C++ Launch",
  6. "type": "cppdbg",
  7. "request": "launch",
  8. "program": "${workspaceRoot}/${fileBasenameNoExtension}",
  9. "args": [],
  10. "stopAtEntry": false,
  11. "cwd": "${workspaceRoot}",
  12. "environment": [],
  13. "externalConsole": true,
  14. "linux": {
  15. "MIMode": "gdb",
  16. "setupCommands": [
  17. {
  18. "description": "Enable pretty-printing for gdb",
  19. "text": "-enable-pretty-printing",
  20. "ignoreFailures": true
  21. }
  22. ]
  23. },
  24. "osx": {
  25. "MIMode": "lldb"
  26. },
  27. "windows": {
  28. "MIMode": "gdb",
  29. "setupCommands": [
  30. {
  31. "description": "Enable pretty-printing for gdb",
  32. "text": "-enable-pretty-printing",
  33. "ignoreFailures": true
  34. }
  35. ]
  36. }
  37. },
  38. {
  39. "name": "C++ Attach",
  40. "type": "cppdbg",
  41. "request": "attach",
  42. "program": "${workspaceRoot}/${fileBasenameNoExtension}",
  43. "processId": "${command:pickProcess}",
  44. "linux": {
  45. "MIMode": "gdb",
  46. "setupCommands": [
  47. {
  48. "description": "Enable pretty-printing for gdb",
  49. "text": "-enable-pretty-printing",
  50. "ignoreFailures": true
  51. }
  52. ]
  53. },
  54. "osx": {
  55. "MIMode": "lldb"
  56. },
  57. "windows": {
  58. "MIMode": "gdb",
  59. "setupCommands": [
  60. {
  61. "description": "Enable pretty-printing for gdb",
  62. "text": "-enable-pretty-printing",
  63. "ignoreFailures": true
  64. }
  65. ]
  66. }
  67. }
  68. ]
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement