7 lines
79 B
Bash
7 lines
79 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ ! -d build ]; then
|
||
|
meson build
|
||
|
fi
|
||
|
|
||
|
cd build && meson compile
|