13 lines
134 B
Bash
Executable File
13 lines
134 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# incase it's not set up already
|
|
meson setup build
|
|
|
|
echo "Compiling..."
|
|
cd build
|
|
meson compile
|
|
|
|
echo "Running..."
|
|
./flowy
|
|
|