innopol-protocol-mayak-server/clang_client/.vscode/tasks.json

22 lines
338 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "gcc",
"args": [
"-std=c99",
"-O2",
"-g",
"main.c",
"Drivers/sim808.c",
"-o",
"sim808_app"
],
"group": "build",
"problemMatcher": ["$gcc"]
}
]
}