16 lines
204 B
Bash
Executable File
16 lines
204 B
Bash
Executable File
#!/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
|