mesytec-mnode/.vscode/launch.json

90 lines
3.2 KiB
JSON
Raw Normal View History

2024-12-25 18:28:28 +01:00
{
// 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": "mana_auto_replay",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/mana_auto_replay",
"args": [
"~/Documents/is690-9Li_3H_run094_241020_124254_part001.zip",
2024-12-26 18:42:25 +01:00
"--plugin=src/libmana-plugin-root-histogram.so"
],
2024-12-25 18:28:28 +01:00
"stopAtEntry": false,
"cwd": "${workspaceFolder}/build",
2024-12-25 18:28:28 +01:00
"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
}
2024-12-29 21:28:51 +01:00
]
},
{
"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
}
2024-12-25 18:28:28 +01:00
]
},
{
"name": "(gdb) mvlc-mini-daq",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/mvlc-mini-daq",
"args": [
"--no-listfile",
"~/Documents/mvme-workspaces/dev-workspace/mtdc_001.yaml"
],
"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
}
]
}
]
}