mirror of
https://github.com/hmaxnl/netex.git
synced 2025-02-22 13:45:02 +01:00
35 lines
1.2 KiB
JSON
Executable File
35 lines
1.2 KiB
JSON
Executable File
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "netex server (gdbserver)",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/build/debug/bin/netex_srv",
|
|
"args": [],
|
|
"miDebuggerServerAddress": "localhost:2345",
|
|
"miDebuggerPath": "/usr/bin/gdb",
|
|
"stopAtEntry": false,
|
|
"cwd": "${fileDirname}",
|
|
"environment": [],
|
|
"externalConsole": false,
|
|
"MIMode": "gdb",
|
|
"preLaunchTask": "netex_srv-gdbserver",
|
|
"setupCommands": [
|
|
{
|
|
"description": "Enable pretty-printing for gdb",
|
|
"text": "-enable-pretty-printing",
|
|
"ignoreFailures": true
|
|
},
|
|
{
|
|
"description": "Set Disassembly Flavor to Intel",
|
|
"text": "-gdb-set disassembly-flavor intel",
|
|
"ignoreFailures": true
|
|
}
|
|
]
|
|
}
|
|
]
|
|
} |