Guest User

Untitled

a guest
Dec 26th, 2024
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Debug wxWidgets Project",
  6. "type": "cppdbg",
  7. "request": "launch",
  8. "program": "${workspaceFolder}/build/app",
  9. "args": [],
  10. "stopAtEntry": false,
  11. "cwd": "${workspaceFolder}",
  12. "environment": [],
  13. "externalConsole": true,
  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": "Build wxWidgets Project"
  23. }
  24. ]
  25. }
Advertisement
Add Comment
Please, Sign In to add comment