Files
mice-3ds/.vscode/tasks.json
Mahyar Koshkouei 08ec6a7adb ide: add debug config for vs code
Signed-off-by: Mahyar Koshkouei <mk@deltabeard.com>
2025-07-30 21:35:36 +01:00

22 lines
372 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build 3DS ROM",
"type": "shell",
"command": "make",
"args": [ "output/3ds-arm/ctrmus.elf" ],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}