You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
-
- set -e
-
- export DESTDIR=/tmp/distrho-ports
-
- if [ "${TARGET}" = "win32" ]; then
- EXTRA_ARGS="--cross-file scripts/meson/win32.ini"
- elif [ "${TARGET}" = "win64" ]; then
- EXTRA_ARGS="--cross-file scripts/meson/win64.ini"
- fi
-
- echo "meson build --buildtype release ${EXTRA_ARGS}"
- meson build --buildtype release ${EXTRA_ARGS}
- ninja -v -C build
- ninja -C build install
|