This commit is contained in:
chatlanin
2022-02-28 12:44:18 +03:00
commit 0ad600c339
12 changed files with 145 additions and 0 deletions

12
run Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
TEST="meson test -C build"
RUN="./build/bin/hack"
command meson compile -C build
if [[ $1 == "test" ]]; then
command $TEST
else
command $RUN
fi