1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
#!/usr/bin/env bash
set -vex
#########
# BUILD #
#########
# configure
# '--wrap-mode nofallback' prevents meson from downloading
# stuff from the internet or using subprojects.
meson \
--werror \
--buildtype "${BUILDTYPE:-release}" \
--default-library "${LIBRARYTYPE:-shared}" \
--libdir lib \
--unity "${ENABLED_UNITY_BUILD:-off}" \
--wrap-mode "${ENABLED_WRAP_MODE:-nofallback}" \
--prefix "${PREFIX_ARG:-/usr/local}" \
-Db_coverage="${ENABLED_COVERAGE:-false}" \
-Db_lto="${ENABLED_LTO:-false}" \
-Db_sanitize="${ENABLED_SANITIZERS:-none}" \
-Db_lundef="${ENABLED_LUNDEF:-true}" \
-Dcpp_debugstl="${ENABLED_DEBUGSTL:-false}" \
-Dtests="${ENABLED_TESTS:-false}" \
"${CURRENT_BUILD_DIR:-build}" .
# build
ninja -C "${CURRENT_BUILD_DIR:-build}" -v
|