Files
2026-07-09 11:27:59 +08:00

32 lines
885 B
JSON

{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++ build libParams.so",
"command": "/usr/bin/g++",
"args": [
"-fdiagnostics-color=always",
"-g",
"${workspaceFolder}/*.cpp",
"-std=c++11",
"-fPIC",
"-shared",
"-I","${workspaceFolder}/../common",
"-o","${workspaceFolder}/../deploy/libParams.so",
"-D","_SERVER"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}