isle/.vscode/tasks.json
2023-07-02 13:38:08 -07:00

32 lines
690 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Configure decomp with standard setup",
"type": "shell",
"group": "build",
"command": "configure.py"
},
{
"label": "Build decomp",
"type": "shell",
"group": "build",
"command": "build.py"
},
{
"label": "Build decomp and print overall status",
"type": "shell",
"group": "build",
"command": "build.py --status"
},
{
"label": "Build decomp and inspect function by cursor",
"type": "shell",
"group": "build",
"command": "build.py --inspect-shim ${file} ${lineNumber}"
}
]
}