Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 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}/build/.out",
  9. "args": [],
  10. "stopAtEntry": false,
  11. "cwd": "${workspaceRoot}",
  12. "environment": [],
  13. "externalConsole": true,
  14. "linux": {
  15. "MIMode": "gdb"
  16. }
  17. },
  18. {
  19. "name": "C++ Launch (Windows)",
  20. "type": "cppvsdbg",
  21. "request": "launch",
  22. "program": "${workspaceRoot}/build/.exe",
  23. "args": [],
  24. "stopAtEntry": false,
  25. "cwd": "${workspaceRoot}",
  26. "environment": [],
  27. "externalConsole": true
  28. }
  29. ]
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement