9 lines
96 B
Bash
9 lines
96 B
Bash
#!/bin/bash
|
|
|
|
if [ ! -d "build" ]; then meson build; fi
|
|
|
|
cd build
|
|
meson compile
|
|
meson test
|
|
cd ..
|