29 lines
690 B
JSON
29 lines
690 B
JSON
{
|
|
"tasks": [
|
|
{
|
|
"type": "cppbuild",
|
|
"label": "build",
|
|
"command": "/usr/bin/gcc",
|
|
"args": [
|
|
"-fdiagnostics-color=always",
|
|
"-g",
|
|
"*.c",
|
|
"`pkg-config", "--libs", "--cflags", "mm-glib`",
|
|
"-o",
|
|
"${workspaceFolder}/bin/mportlink"
|
|
],
|
|
"options": {
|
|
"cwd": "${fileDirname}"
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
}
|
|
],
|
|
"version": "2.0.0"
|
|
}
|