action_server/.vscode/launch.json

54 lines
1.7 KiB
JSON
Raw Normal View History

2024-10-12 14:07:33 +08:00
{
"configurations": [
{
"name": "act_server",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/install/cpp_srvcli/lib/cpp_srvcli/act_server",
"args": [],
"preLaunchTask": "rws build",
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "为 gdb 启用整齐打印",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "将反汇编风格设置为 Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
},
{
"name": "act_clent",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/install/cpp_srvcli/lib/cpp_srvcli/act_client",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"preLaunchTask": "rws build",
"setupCommands": [
{
"description": "为 gdb 启用整齐打印",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "将反汇编风格设置为 Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
}
]
}