1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00

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

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"
},