This repository has been archived on 2024-05-28. You can view files and clone it, but cannot push or open issues or pull requests.
try_engine/run.sh
Andrey Zimin 5b9530caa1 fix run
2024-03-25 10:59:11 +03:00

14 lines
169 B
Bash
Executable File

#!/bin/zsh
PROJECT_NAME="try_engine"
command meson compile -C build
if [[ -z "$1" ]]; then
cd build
./bin/$PROJECT_NAME
cd ..
else
meson test $1 -C build
fi