host-aprom/.vscode/tasks.json

20 lines
295 B
JSON
Raw Normal View History

2024-06-29 20:17:34 +00:00
{
"version": "2.0.0",
"tasks": [
{
"label": "Build Host APROM",
"command": "make",
"args": [
"-j",
"all"
],
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
}
]
}