37 lines
1.2 KiB
JSON
37 lines
1.2 KiB
JSON
{
|
|
"tasks": [
|
|
{
|
|
"type": "cppbuild",
|
|
"label": "C/C++: g++ build StoredProcedure.so",
|
|
"command": "/usr/bin/g++",
|
|
"args": [
|
|
"-fdiagnostics-color=always",
|
|
"-g",
|
|
"${workspaceFolder}/*.cpp",
|
|
"${workspaceFolder}/../common/thread.cpp",
|
|
"${workspaceFolder}/../common/debug.c",
|
|
"-std=c++11",
|
|
"-fPIC",
|
|
"-shared",
|
|
"-I","${workspaceFolder}/../common",
|
|
"-I","${workspaceFolder}/mysql/include",
|
|
"-L","${workspaceFolder}/mysql/lib",
|
|
"-l","mysqlclient",
|
|
"-Wl,-rpath","${workspaceFolder}/../deploy/",
|
|
"-o","${workspaceFolder}/../deploy/lib${workspaceFolderBasename}.so",
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"detail": "Task generated by Debugger."
|
|
}
|
|
],
|
|
"version": "2.0.0"
|
|
} |