ProxyServerTcp / .vscode /tasks.json
xukc
[fix]support tcp
a8ba146
raw
history blame
697 Bytes
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "g++",
"args": [
"-std=c++14",
"-g",
"-o",
"test",
"-I",
"include",
"-I",
"include/bolt",
"hv_utils.cpp",
"tcp_inbound.cpp",
"tcp_client.cpp",
"main.cpp",
"-lhv",
"-lspdlog"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}