Skip to content

Instantly share code, notes, and snippets.

@sean-gilliam
Created November 18, 2019 22:56
Show Gist options
  • Save sean-gilliam/60185c008cff75ddbb6ddece58f74244 to your computer and use it in GitHub Desktop.
Save sean-gilliam/60185c008cff75ddbb6ddece58f74244 to your computer and use it in GitHub Desktop.
riftshadow vscode launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "C++ Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/code/rift",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceRoot}/code/",
"environment": [],
"externalConsole": true,
// "miDebuggerPath": "/bin",
"linux": {
"MIMode": "gdb"
},
"osx": {
"MIMode": "lldb"
},
"windows": {
"MIMode": "gdb"
}
},
{
"name": "C++ Attach",
"type": "cppdbg",
"request": "attach",
"program": "${workspaceRoot}/code/rift",
"processId": "${command:pickProcess}",
"linux": {
"MIMode": "gdb"
},
"osx": {
"MIMode": "lldb"
},
"windows": {
"MIMode": "gdb"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment