build.sh (230B)
1 #!/bin/bash 2 set -exuo pipefail 3 4 MESON_BUILD_DIR=./build 5 6 rm -rf ${MESON_BUILD_DIR} 7 ./bootstrap meson 8 meson setup -Dlogging=verbose \ 9 ${MESON_BUILD_DIR} 10 11 meson compile -C ${MESON_BUILD_DIR} 12 meson install -C ${MESON_BUILD_DIR}