Skip to content

Instantly share code, notes, and snippets.

@sourencho
Created November 5, 2019 17:20
Show Gist options
  • Save sourencho/47746e0c2b39545975f8e7768e281849 to your computer and use it in GitHub Desktop.
Save sourencho/47746e0c2b39545975f8e7768e281849 to your computer and use it in GitHub Desktop.
{
"version": "0.2.0",
"configurations": [
{
"name": "(lldb) Launch ug-server",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/build/src/server/ug-server",
"args": [],
"stopAtEntry": true,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "lldb"
},
{
"name": "(lldb) Launch ug-client",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/build/src/client/ug-client",
"args": [],
"stopAtEntry": true,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "lldb"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment