Created
November 5, 2019 17:20
-
-
Save sourencho/47746e0c2b39545975f8e7768e281849 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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