launch.json 664 B

123456789101112131415161718192021222324252627
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Debug Qt (GDB)",
  6. "type": "cppdbg",
  7. "request": "launch",
  8. "program": "${workspaceFolder}/apollodriver_nvcan", //
  9. "args": [],
  10. "stopAtEntry": false,
  11. "cwd": "${workspaceFolder}",
  12. "environment": [
  13. {"name": "LD_LIBRARY_PATH", "value": "/usr/local/qt5/lib"} //
  14. ],
  15. "externalConsole": false,
  16. "MIMode": "gdb",
  17. "setupCommands": [
  18. {
  19. "description": "Print",
  20. "text": "-enable-pretty-printing",
  21. "ignoreFailures": true
  22. }
  23. ]
  24. }
  25. ]
  26. }