Guest User

Untitled

a guest
Aug 24th, 2020
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.10 KB | None | 0 0
  1. {
  2.   "name": "C++ Launch",
  3.   "type": "cppdbg",
  4.   "request": "launch",
  5.   "program": "${workspaceFolder}/a.out",
  6.   "stopAtEntry": false,
  7.   "customLaunchSetupCommands": [
  8.     {
  9.       "text": "target-run",
  10.       "description": "run target",
  11.       "ignoreFailures": false
  12.     }
  13.   ],
  14.   "launchCompleteCommand": "exec-run",
  15.   "linux": {
  16.     "MIMode": "gdb",
  17.     "miDebuggerPath": "/usr/bin/gdb"
  18.   },
  19.   "osx": {
  20.     "MIMode": "lldb"
  21.   },
  22.   "windows": {
  23.     "MIMode": "gdb",
  24.     "miDebuggerPath": "C:\\Program Files (x86)\\MinGW\\mingw64\\bin\\gdb.exe"
  25.   },
  26.   "version": "0.2.0",
  27.   "configurations": [
  28.       {
  29.           "name": "(Windows) Launch",
  30.           "type": "cppvsdbg",
  31.           "request": "launch",
  32.           "program": "${workspaceFolder}/myfile.exe",
  33.           "args": [],
  34.           "stopAtEntry": false,
  35.           "cwd": "${workspaceFolder}",
  36.           "environment": [],
  37.           "externalConsole": true
  38.       },
  39.       {
  40.           "name": "(Windows) Attach",
  41.           "type": "cppvsdbg",
  42.           "request": "attach",
  43.           "processId": "${command:pickProcess}"
  44.       }
  45.   ]
  46. }
Add Comment
Please, Sign In to add comment