ProxyServerTcp / .vscode /tasks.json
xukc
[feat]增加引用spdlog
fc28fd3
raw
history blame
609 Bytes
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "g++",
"args": [
"-std=c++14",
"-g",
"-o",
"test",
"-I",
"include",
"hv_utils.cpp",
"tcp_inbound.cpp",
"main.cpp",
"-lhv",
"-lspdlog"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}