first commit

This commit is contained in:
2025-05-11 14:16:05 +02:00
commit d9d0643dfc
9 changed files with 379 additions and 0 deletions

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

@@ -0,0 +1,14 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "cmake -S . -B build && cmake --build build",
"group": "build",
"problemMatcher": [
"$gcc"
]
}
]
}