cmvr-es/.vscode/launch.json

31 lines
944 B
JSON
Raw Normal View History

2026-03-17 15:59:25 +08:00
{
2026-07-02 08:29:19 +08:00
"version": "0.2.0",
2026-03-17 15:59:25 +08:00
"configurations": [
{
2026-07-02 08:29:19 +08:00
"name": "Debug cmvr_es (installed output)",
2026-03-17 15:59:25 +08:00
"type": "cppdbg",
"request": "launch",
2026-07-02 08:29:19 +08:00
"program": "${workspaceFolder}/output/bin/cmvr_es",
2026-03-17 15:59:25 +08:00
"args": [],
"stopAtEntry": false,
2026-07-02 08:29:19 +08:00
"cwd": "${workspaceFolder}/output/bin",
"environment": [
{
"name": "LD_LIBRARY_PATH",
"value": "${workspaceFolder}/output/lib:${env:LD_LIBRARY_PATH}"
}
],
2026-03-17 15:59:25 +08:00
"externalConsole": false,
"MIMode": "gdb",
2026-07-02 08:29:19 +08:00
"preLaunchTask": "cmake: install",
2026-03-17 15:59:25 +08:00
"setupCommands": [
{
2026-07-02 08:29:19 +08:00
"description": "Enable pretty-printing for gdb",
2026-03-17 15:59:25 +08:00
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
2026-07-02 08:29:19 +08:00
]
2026-03-17 15:59:25 +08:00
}
2026-07-02 08:29:19 +08:00
]
}