reorganize project files

This commit is contained in:
2026-03-13 09:34:23 -04:00
parent bf69bafd42
commit 4e0d9fdcca
4 changed files with 9 additions and 9 deletions

10
.vscode/tasks.json vendored
View File

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