Files
autosample/.vscode/tasks.json
2026-02-22 23:12:31 -05:00

37 lines
1.0 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "jai",
"args": ["build.jai"],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"detail": "Build autosample via jai"
},
{
"label": "rebuild",
"type": "shell",
"command": "jai",
"args": ["build.jai"],
"group": "build",
"problemMatcher": [],
"detail": "Clean and rebuild",
"dependsOn": "clean"
},
{
"label": "clean",
"type": "shell",
"command": "if (Test-Path build) { Remove-Item -Recurse -Force build }; if (Test-Path .build) { Remove-Item -Recurse -Force .build }",
"args": [],
"group": "build",
"problemMatcher": [],
"detail": "Remove build and .build directories"
}
]
}