jai port :D

This commit is contained in:
2026-02-22 23:12:31 -05:00
parent ce3c98341c
commit 65e649d757
36 changed files with 5806 additions and 4187 deletions

30
.vscode/tasks.json vendored
View File

@@ -1,40 +1,36 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "bootstrap nob",
"type": "shell",
"command": "cl",
"args": ["/nologo", "nob.c"],
"group": "build",
"problemMatcher": "$msCompile",
"detail": "One-time bootstrap: compile nob.c with cl.exe"
},
{
"label": "build",
"type": "shell",
"command": "${workspaceFolder}/nob.exe",
"group": "build",
"problemMatcher": "$msCompile",
"detail": "Build autosample via nob"
"command": "jai",
"args": ["build.jai"],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"detail": "Build autosample via jai"
},
{
"label": "rebuild",
"type": "shell",
"command": "${workspaceFolder}/nob.exe",
"command": "jai",
"args": ["build.jai"],
"group": "build",
"problemMatcher": "$msCompile",
"problemMatcher": [],
"detail": "Clean and rebuild",
"dependsOn": "clean"
},
{
"label": "clean",
"type": "shell",
"command": "if (Test-Path build) { Remove-Item -Recurse -Force build }",
"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 directory"
"detail": "Remove build and .build directories"
}
]
}