Ros_Qt5_Gui_App/.vscode/launch.json
2022-05-21 05:13:42 -07:00

30 lines
1.1 KiB
JSON

{
// 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": "g++ - 生成和调试活动文件",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/devel/lib/ros_qt5_gui_app/ros_qt5_gui_app",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "为 gdb 启用整齐打印",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "Build",
"miDebuggerPath": "/usr/bin/gdb",
"visualizerFile": "/home/chengyangkj/.config/Code/User/workspaceStorage/3f4c73e86abc989d8726a5af0c5d9710/tonka3000.qtvsctools/qt.natvis.xml"
}
]
}