remove boost and json

This commit is contained in:
Andrey Zimin
2024-05-15 18:52:32 +03:00
parent b14e81244d
commit 478e417dc1
77 changed files with 49210 additions and 163 deletions

21
sandbox/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