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.
MPortLink/.vscode/tasks.json

29 lines
675 B
JSON

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