Revert "replace nob with new custom noblike"

This reverts commit 06e1212483.
This commit is contained in:
2026-03-12 16:30:04 -04:00
parent 06e1212483
commit 48f2c51d92
6 changed files with 3945 additions and 1335 deletions

18
.vscode/tasks.json vendored
View File

@@ -4,15 +4,15 @@
{
"label": "bootstrap",
"type": "shell",
"command": "c++",
"args": ["build.cpp", "-o", "build"],
"command": "cc",
"args": ["build.c", "-o", "build"],
"windows": {
"command": "cl",
"args": ["/nologo", "build.cpp"]
"args": ["/nologo", "build.c"]
},
"group": "build",
"problemMatcher": [],
"detail": "One-time bootstrap: compile build.cpp"
"detail": "One-time bootstrap: compile build.c"
},
{
"label": "build",
@@ -63,15 +63,15 @@
{
"label": "clean",
"type": "shell",
"command": "${workspaceFolder}/build",
"args": ["clean"],
"command": "rm",
"args": ["-rf", "build_debug", "build_release"],
"windows": {
"command": "${workspaceFolder}/build.exe",
"args": ["clean"]
"command": "PowerShell",
"args": ["-Command", "Remove-Item -Recurse -Force -ErrorAction SilentlyContinue build_debug, build_release"]
},
"group": "build",
"problemMatcher": [],
"detail": "Clean build artifacts"
"detail": "Remove build directories"
}
]
}