launch.json 618 B

123456789101112131415161718192021222324
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "C/C++ Runner: Debug Session",
  6. "type": "cppdbg",
  7. "request": "launch",
  8. "args": [],
  9. "stopAtEntry": false,
  10. "externalConsole": false,
  11. "cwd": "/home/alex/Рабочий стол/tets",
  12. "program": "/home/alex/Рабочий стол/tets/build/Debug/outDebug",
  13. "MIMode": "gdb",
  14. "miDebuggerPath": "gdb",
  15. "setupCommands": [
  16. {
  17. "description": "Enable pretty-printing for gdb",
  18. "text": "-enable-pretty-printing",
  19. "ignoreFailures": true
  20. }
  21. ]
  22. }
  23. ]
  24. }