OpenRCT2/.vscode/launch.json

54 lines
1.4 KiB
JSON
Raw Permalink Normal View History

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