initial commit

This commit is contained in:
2026-02-16 19:15:59 +03:00
commit c14177e664
76 changed files with 24383 additions and 0 deletions

21
run.sh Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/zsh
PROJECT_NAME=$(basename $PWD)
run() {
command meson compile -C build
if [[ -z "$1" ]]; then
cd build
./bin/$PROJECT_NAME
cd ..
else
meson test $1 -C build
fi
}
if [ -d "build" ]; then
run
else
command meson setup build
run
fi