Files
DBService/ComposeService/.vscode/tasks.json
T
2026-07-09 11:27:59 +08:00

41 lines
1.3 KiB
JSON

{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++ build DBService",
"command": "/usr/bin/g++",
"args": [
"-fdiagnostics-color=always",
"-g",
"-D","_DEBUG",
"-D","_SERVER",
"${workspaceFolder}/*.cpp",
"${workspaceFolder}/../common/thread.cpp",
"${workspaceFolder}/../common/Socket.cpp",
"${workspaceFolder}/../common/MessageDef.cpp",
"-std=c++11",
"-I","${workspaceFolder}/../common",
"-I","${workspaceFolder}/../param",
"-I","${workspaceFolder}/../StoredProcedure",
"-L","${workspaceFolder}/../deploy",
"-l","StoredProcedure",
"-l","Params",
"-Wl,--copy-dt-needed-entries",
"-o","${workspaceFolder}/../deploy/DBService",
"-pthread",
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}