restore: whole project

This commit is contained in:
2026-03-05 15:11:09 +01:00
parent 321c661bb8
commit f307470f56
57 changed files with 1270 additions and 0 deletions

35
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,35 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build debug",
"type": "process",
"command": "make",
"args": [],
"group": {
"kind": "build",
"isDefault": false
},
"problemMatcher": [
"$gcc"
]
},
{
"label": "build release",
"type": "process",
"command": "make",
"args": [],
"problemMatcher": [
"$gcc"
]
},
{
"label": "clean",
"type": "process",
"command": "make",
"args": [
"clean"
]
}
]
}