launch: add mana_nng_client
This commit is contained in:
parent
1275008864
commit
76d345486e
1 changed files with 27 additions and 0 deletions
27
.vscode/launch.json
vendored
27
.vscode/launch.json
vendored
|
@ -31,6 +31,33 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "mana_nng_client",
|
||||||
|
"type": "cppdbg",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${workspaceFolder}/build/mana_nng_client",
|
||||||
|
"args": [
|
||||||
|
"ipc:///tmp/mana_nng_server.socket",
|
||||||
|
"--plugin=src/libmana-plugin-cpp-test.so"
|
||||||
|
],
|
||||||
|
"stopAtEntry": false,
|
||||||
|
"cwd": "${workspaceFolder}/build",
|
||||||
|
"environment": [],
|
||||||
|
"externalConsole": false,
|
||||||
|
"MIMode": "gdb",
|
||||||
|
"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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "(gdb) mvlc-mini-daq",
|
"name": "(gdb) mvlc-mini-daq",
|
||||||
"type": "cppdbg",
|
"type": "cppdbg",
|
||||||
|
|
Loading…
Reference in a new issue