2D_Engine_Casio/.vscode/tasks.json

23 lines
571 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build CG",
"type": "shell",
"command": "fxsdk build-cg",
"problemMatcher": ["$gcc"]
},
{
"label": "Send G3A to Calculator",
"type": "shell",
"command": "fxlink -isw *.g3a",
"problemMatcher": []
},
{
"label": "Build CG and Send",
"type": "shell",
"command": "fxsdk build-cg && fxlink -isw *.g3a",
"problemMatcher": []
}
]
}