First commit

This commit is contained in:
2026-03-28 11:48:37 +02:00
commit 77f60087dc
8 changed files with 1428 additions and 0 deletions

16
.zed/tasks.json Normal file
View File

@@ -0,0 +1,16 @@
[
{
"label": "CMake Build & Run Debug",
"command": "cmake -B cmake-build-debug -DCMAKE_BUILD_TYPE=Debug && cmake --build cmake-build-debug --config Debug -j && ./cmake-build-debug/CrazyCrazyLife",
"reveal": "always",
"use_new_terminal": false,
"allow_concurrent_runs": true,
},
{
"label": "CMake Build & Run Release",
"command": "cmake -B cmake-build-release -DCMAKE_BUILD_TYPE=Release && cmake --build cmake-build-release --config Release -j && ./cmake-build-release/CrazyCrazyLife",
"reveal": "always",
"use_new_terminal": false,
"allow_concurrent_runs": true,
},
]