You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
773 B

  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "C++ Debug (gdb)",
  6. "type": "cppdbg",
  7. "request": "launch",
  8. "program": "${workspaceFolder}/bin/main",
  9. "preLaunchTask": "Build C++ project",
  10. "args": [],
  11. "stopAtEntry": false,
  12. "cwd": "${workspaceFolder}",
  13. "environment": [],
  14. "externalConsole": true,
  15. "MIMode": "gdb",
  16. "miDebuggerPath": "/usr/bin/gdb",
  17. "setupCommands": [
  18. {
  19. "description": "Enable pretty-printing for gdb",
  20. "text": "-enable-pretty-printing",
  21. "ignoreFailures": true
  22. }
  23. ]
  24. }
  25. ]
  26. }