actorfm/run

16 lines
204 B
Plaintext
Raw Normal View History

2022-04-11 10:23:05 +03:00
#!/bin/sh
PROJECT_NAME="actorfm"
TEST="meson test -C build"
RUN="./build/bin/$PROJECT_NAME"
command meson compile -C build
if [[ $1 == "test" ]]; then
command $TEST
else
command $RUN
fi
return 0