cmvr-es/.vscode/launch.json
2026-07-02 08:29:19 +08:00

31 lines
944 B
JSON

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