1#!/bin/sh 2 3set -e 4 5# compile with the following warnings: 6# --warnlevel 3 : passes to the compiler -Wall -Wextra -Wpedantic 7# --werror : passes to the compiler -Werror 8# --default-library : can be 'shared', 'static' or 'both' 9meson setup \ 10 --warnlevel 3 \ 11 --werror \ 12 --buildtype=debugoptimized \ 13 --default-library shared \ 14 -Dlegacy=enabled \ 15 builddir 16 17ninja -C builddir test 18 19