move_xrobot/.vscode/launch.json

24 lines
633 B
JSON
Raw Normal View History

2025-03-04 17:20:57 +08:00
{
"version": "0.2.0",
"configurations": [
{
"name": "C/C++ Runner: Debug Session",
"type": "cppdbg",
"request": "launch",
"args": [],
"stopAtEntry": false,
"externalConsole": true,
"cwd": "c:/Users/lvzucheng/Documents/XRobot/User/device",
"program": "c:/Users/lvzucheng/Documents/XRobot/User/device/build/Debug/outDebug",
"MIMode": "gdb",
"miDebuggerPath": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}