Update vscode debug configuration

This commit is contained in:
Ted John 2017-05-27 19:44:04 +01:00 committed by Gymnasiast
parent 7a59eef47e
commit 1eb5ed0c93
1 changed files with 11 additions and 1 deletions

12
.vscode/launch.json vendored
View File

@ -7,10 +7,15 @@
"request": "launch",
"program": "${workspaceRoot}/bin/openrct2",
"args": [],
"stopAtEntry": true,
"stopAtEntry": false,
"cwd": "${workspaceRoot}/bin",
"environment": [],
"externalConsole": true,
"setupCommands": [
{
"text": "-enable-pretty-printing"
}
],
"linux": {
"MIMode": "gdb"
},
@ -27,6 +32,11 @@
"request": "attach",
"program": "${workspaceRoot}/bin/openrct2",
"processId": "${command.pickProcess}",
"setupCommands": [
{
"text": "-enable-pretty-printing"
}
],
"linux": {
"MIMode": "gdb"
},