LogEtComUSB/.vscode/tasks.json

25 lines
634 B
JSON

{
"tasks": [
{
"type": "shell",
"command": "cd build; cmake ../ -DLOG=2; make Flash",
"label": "Flash with LOG=2",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "shell",
"command": "cd build; cmake ../ ; make Flash",
"label": "CMake & Make & Flash",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
],
"version": "2.0.0"
}