summaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json35
1 files changed, 34 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 03c2de7..06f46b8 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -60,6 +60,39 @@
"ignoreFailures": true
}
]
- }
+ },
+ {
+ "name": "harvester (port 1234)",
+ "type": "cppdbg",
+ "request": "launch",
+ "program": "/opt/AGL/bin/afb-daemon",
+ "args": [
+ "--port=1234",
+ "--name=afbd-harvester",
+ "--workdir=${workspaceRoot}/build/package/",
+ "--ldpaths=lib",
+ "--roothttp=.",
+ "--token=",
+ "--tracereq=common",
+ "--ws-server=unix:/tmp/harvester",
+ "-vvv"
+ ],
+ "additionalSOLibSearchPath": "${workspaceRoot}/build/package/lib",
+ "stopAtEntry": false,
+ "cwd": "${workspaceRoot}/build/package",
+ "environment": [
+ ],
+ "externalConsole": false,
+ "MIMode": "gdb",
+ "setupCommands": [
+ {
+ "description": "Enable pretty-printing for gdb",
+ "text": "-enable-pretty-printing",
+ "ignoreFailures": true
+ }
+ ],
+ "showDisplayString": true,
+ "preLaunchTask": "Build"
+ }
]
}