host-aprom/.vscode/tasks.json
2024-06-29 21:17:34 +01:00

20 lines
295 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build Host APROM",
"command": "make",
"args": [
"-j",
"all"
],
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
}
]
}