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

14 lines
169 B
Bash
Raw Normal View History

2023-03-02 14:54:39 +03:00
#!/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