This repository has been archived on 2024-06-12. You can view files and clone it, but cannot push or open issues or pull requests.
2023-12-20 21:18:00 +00:00
|
|
|
{
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"type": "cppbuild",
|
|
|
|
"label": "build",
|
|
|
|
"command": "/usr/bin/gcc",
|
|
|
|
"args": [
|
|
|
|
"-fdiagnostics-color=always",
|
|
|
|
"-g",
|
|
|
|
"*.c",
|
2023-12-23 21:35:41 +00:00
|
|
|
"`pkg-config", "--libs", "udev`",
|
2023-12-20 21:18:00 +00:00
|
|
|
"-o",
|
|
|
|
"${workspaceFolder}/bin/mportlink"
|
|
|
|
],
|
|
|
|
"options": {
|
|
|
|
"cwd": "${fileDirname}"
|
|
|
|
},
|
|
|
|
"problemMatcher": [
|
|
|
|
"$gcc"
|
|
|
|
],
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"version": "2.0.0"
|
|
|
|
}
|