Clean Tests

This commit is contained in:
2025-12-15 21:20:30 +05:30
parent 71d83859f5
commit 1b24256653
21 changed files with 1224 additions and 1396 deletions

16
.vscode/tasks.json vendored
View File

@ -1,13 +1,19 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "python3 Tools/Builder/Build.py",
"label": "CMake Build",
"type": "cmake",
"command": "build",
"group": {
"kind": "build",
"isDefault": true
}
},
"presentation": {
"reveal": "silent",
"panel": "shared"
},
"detail": "Builds the currently selected CMake Preset"
}
],
]
}