ProxyServerTcp / .vscode /launch.json
xukc
[feat]proxy framework
83607bc
raw
history blame
688 Bytes
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/test",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "lldb",
"preLaunchTask": "build",
"setupCommands": [
{
"description": "Enable pretty-printing for lldb",
"text": "enable",
"ignoreFailures": true
}
]
}
]
}