chore: initial commit
Some checks failed
Code Analysis / analysis (push) Failing after 2m59s

This commit is contained in:
2025-12-30 22:34:58 +07:00
commit 35a6349071
63 changed files with 2675 additions and 0 deletions

19
.zed/debug.json Normal file
View File

@@ -0,0 +1,19 @@
// Project-local debug tasks
//
// For more documentation on how to configure debug tasks,
// see: https://zed.dev/docs/debugger
[
{
"label": "Unit tests",
"build": {
"command": "cmake",
"args": [
"--build", "${ZED_WORKTREE_ROOT}/cmake-build-debug", "-j", "12"
]
},
"reverseDebugging": true,
"program": "${ZED_WORKTREE_ROOT}/cmake-build-debug/tests/unit_tests",
"adapter": "CodeLLDB",
"request": "launch"
}
]

51
.zed/tasks.json Normal file
View File

@@ -0,0 +1,51 @@
// Project tasks configuration. See https://zed.dev/docs/tasks for documentation.
[
{
"label": "Setup debug build directory",
"command": "cmake -S ${ZED_WORKTREE_ROOT} -B ${ZED_WORKTREE_ROOT}/cmake-build-debug -DCMAKE_BUILD_TYPE=Debug",
"reveal": "no_focus",
"hide": "on_success"
},
{
"label": "Setup release build directory",
"command": "cmake -S ${ZED_WORKTREE_ROOT} -B ${ZED_WORKTREE_ROOT}/cmake-build-release -DCMAKE_BUILD_TYPE=Release",
"reveal": "no_focus",
"hide": "on_success"
},
{
"label": "Setup tests debug build directory",
"command": "cmake -S ${ZED_WORKTREE_ROOT} -B ${ZED_WORKTREE_ROOT}/tests/cmake-build-debug -DCMAKE_BUILD_TYPE=Debug",
"reveal": "no_focus",
"hide": "on_success"
},
{
"label": "Setup tests release build directory",
"command": "cmake -S ${ZED_WORKTREE_ROOT} -B ${ZED_WORKTREE_ROOT}/tests/cmake-build-release -DCMAKE_BUILD_TYPE=Release",
"reveal": "no_focus",
"hide": "on_success"
},
{
"label": "Clean debug build directory",
"command": "cmake --build ${ZED_WORKTREE_ROOT}/cmake-build-debug --target clean",
"reveal": "no_focus",
"hide": "on_success"
},
{
"label": "Clean release build directory",
"command": "cmake --build ${ZED_WORKTREE_ROOT}/cmake-build-release --target clean",
"reveal": "no_focus",
"hide": "on_success"
},
{
"label": "Clean tests debug build directory",
"command": "cmake --build ${ZED_WORKTREE_ROOT}/tests/cmake-build-debug --target clean",
"reveal": "no_focus",
"hide": "on_success"
},
{
"label": "Clean tests release build directory",
"command": "cmake --build ${ZED_WORKTREE_ROOT}/tests/cmake-build-release --target clean",
"reveal": "no_focus",
"hide": "on_success"
}
]