Initial commit

This commit is contained in:
2025-11-06 10:49:44 +08:00
commit 2d16528ac4
20 changed files with 4653 additions and 0 deletions

10
build.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
cmake --preset default
cd build
ninja
if [ $? -eq 0 ]; then
echo "Build successful!"
else
echo "Build failed!"
exit 1
fi