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

44
CMakePresets.json Normal file
View File

@@ -0,0 +1,44 @@
{
"version": 3,
"configurePresets": [
{
"name": "debug",
"displayName": "Debug Build (vcpkg)",
"description": "Debug build using vcpkg dependencies",
"binaryDir": "${sourceDir}/cmake-build-debug",
"generator": "Ninja",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_TOOLCHAIN_FILE": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
}
},
{
"name": "debug-build",
"displayName": "Debug Build (vcpkg)",
"description": "Debug build using vcpkg dependencies",
"binaryDir": "${sourceDir}/build",
"generator": "Ninja",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_TOOLCHAIN_FILE": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
}
}
],
"buildPresets": [
{
"name": "debug",
"configurePreset": "debug"
},
{
"name": "debug-build",
"configurePreset": "debug-build"
},
{
"name": "debug-run",
"configurePreset": "debug",
"targets": [ "run" ]
}
]
}