#!/bin/bash # if build directory is present, remove it if [ -d "build" ]; then rm -rf build fi meson setup build meson compile -C build