mario-kart-casio/.vscode/tasks.json

41 lines
1.0 KiB
JSON

{
"tasks": [
{
"label": "Build for browser",
"type": "shell",
"command": "make",
"args": [
"-B",
"html/index.html"
],
"group": "build",
"presentation": {
"reveal": "always"
}
},
{
"type": "cppbuild",
"label": "C/C++: sh3eb-elf-g++ build active file",
"command": "/usr/local/cross/bin/sh3eb-elf-g++",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}