2016-12-12 20:29:22 +00:00
|
|
|
{
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
2017-12-17 00:50:50 +00:00
|
|
|
|
2016-12-12 20:29:22 +00:00
|
|
|
{
|
|
|
|
"name": "C++ Launch",
|
|
|
|
"type": "cppdbg",
|
|
|
|
"request": "launch",
|
2017-12-17 00:50:50 +00:00
|
|
|
"program": "${workspaceFolder}/bin/openrct2",
|
2016-12-12 20:29:22 +00:00
|
|
|
"args": [],
|
2017-05-27 19:44:04 +01:00
|
|
|
"stopAtEntry": false,
|
2017-12-17 00:50:50 +00:00
|
|
|
"cwd": "${workspaceFolder}/bin",
|
2016-12-12 20:29:22 +00:00
|
|
|
"environment": [],
|
2019-05-04 14:04:20 +00:00
|
|
|
"externalConsole": false,
|
2017-05-27 19:44:04 +01:00
|
|
|
"setupCommands": [
|
|
|
|
{
|
2017-12-17 00:50:50 +00:00
|
|
|
"description": "Enable pretty-printing for gdb",
|
|
|
|
"text": "-enable-pretty-printing",
|
|
|
|
"ignoreFailures": true
|
2017-05-27 19:44:04 +01:00
|
|
|
}
|
|
|
|
],
|
2016-12-12 20:29:22 +00:00
|
|
|
"linux": {
|
|
|
|
"MIMode": "gdb"
|
|
|
|
},
|
|
|
|
"osx": {
|
|
|
|
"MIMode": "lldb"
|
|
|
|
},
|
|
|
|
"windows": {
|
|
|
|
"MIMode": "gdb"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "C++ Attach",
|
|
|
|
"type": "cppdbg",
|
|
|
|
"request": "attach",
|
2017-12-17 00:50:50 +00:00
|
|
|
"program": "${workspaceFolder}/bin/openrct2",
|
2017-07-01 12:24:04 +01:00
|
|
|
"processId": "${command:pickProcess}",
|
2017-05-27 19:44:04 +01:00
|
|
|
"setupCommands": [
|
|
|
|
{
|
|
|
|
"text": "-enable-pretty-printing"
|
|
|
|
}
|
|
|
|
],
|
2016-12-12 20:29:22 +00:00
|
|
|
"linux": {
|
|
|
|
"MIMode": "gdb"
|
|
|
|
},
|
|
|
|
"osx": {
|
|
|
|
"MIMode": "lldb"
|
|
|
|
},
|
|
|
|
"windows": {
|
|
|
|
"MIMode": "gdb"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|