mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 18:31:59 -05:00
54 lines
No EOL
1.4 KiB
JSON
54 lines
No EOL
1.4 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
|
|
{
|
|
"name": "C++ Launch",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/bin/openrct2",
|
|
"args": [],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceFolder}/bin",
|
|
"environment": [],
|
|
"externalConsole": false,
|
|
"setupCommands": [
|
|
{
|
|
"description": "Enable pretty-printing for gdb",
|
|
"text": "-enable-pretty-printing",
|
|
"ignoreFailures": true
|
|
}
|
|
],
|
|
"linux": {
|
|
"MIMode": "gdb"
|
|
},
|
|
"osx": {
|
|
"MIMode": "lldb"
|
|
},
|
|
"windows": {
|
|
"MIMode": "gdb"
|
|
}
|
|
},
|
|
{
|
|
"name": "C++ Attach",
|
|
"type": "cppdbg",
|
|
"request": "attach",
|
|
"program": "${workspaceFolder}/bin/openrct2",
|
|
"processId": "${command:pickProcess}",
|
|
"setupCommands": [
|
|
{
|
|
"text": "-enable-pretty-printing"
|
|
}
|
|
],
|
|
"linux": {
|
|
"MIMode": "gdb"
|
|
},
|
|
"osx": {
|
|
"MIMode": "lldb"
|
|
},
|
|
"windows": {
|
|
"MIMode": "gdb"
|
|
}
|
|
}
|
|
]
|
|
} |