mii_emu/.vscode/tasks.json

18 lines
351 B
JSON
Raw Normal View History

2023-10-31 20:59:47 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Make Build",
"type": "shell",
"command": "make all",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}