modbus_MediaPipe/.vscode/.vscode/tasks.json

21 lines
378 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build C",
"type": "shell",
"command": "C:/msys64/mingw64/bin/gcc.exe",
"args": [
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}.exe"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": ["$gcc"]
}
]
}