Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "name": "C++ Launch",
- "type": "cppdbg",
- "request": "launch",
- "program": "${workspaceFolder}/a.out",
- "stopAtEntry": false,
- "customLaunchSetupCommands": [
- {
- "text": "target-run",
- "description": "run target",
- "ignoreFailures": false
- }
- ],
- "launchCompleteCommand": "exec-run",
- "linux": {
- "MIMode": "gdb",
- "miDebuggerPath": "/usr/bin/gdb"
- },
- "osx": {
- "MIMode": "lldb"
- },
- "windows": {
- "MIMode": "gdb",
- "miDebuggerPath": "C:\\Program Files (x86)\\MinGW\\mingw64\\bin\\gdb.exe"
- },
- "version": "0.2.0",
- "configurations": [
- {
- "name": "(Windows) Launch",
- "type": "cppvsdbg",
- "request": "launch",
- "program": "${workspaceFolder}/myfile.exe",
- "args": [],
- "stopAtEntry": false,
- "cwd": "${workspaceFolder}",
- "environment": [],
- "externalConsole": true
- },
- {
- "name": "(Windows) Attach",
- "type": "cppvsdbg",
- "request": "attach",
- "processId": "${command:pickProcess}"
- }
- ]
- }
Add Comment
Please, Sign In to add comment