Cross-Platform build scripts for audio plugins
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.

35 lines
886B

  1. #!/bin/bash
  2. set -e
  3. cd $(dirname ${0})
  4. PAWPAW_ROOT="${PWD}"
  5. # ---------------------------------------------------------------------------------------------------------------------
  6. # check target
  7. target="${1}"
  8. if [ -z "${target}" ]; then
  9. echo "usage: ${0} <target>"
  10. exit 1
  11. fi
  12. # ---------------------------------------------------------------------------------------------------------------------
  13. # run bootstrap dependencies
  14. export PAWPAW_SKIP_GLIB=1
  15. export PAWPAW_SKIP_LV2=1
  16. export PAWPAW_SKIP_SAMPLERATE=1
  17. # we just build the whole thing on Windows
  18. if [ "${target}" != "win32" ] && [ "${target}" != "win64" ]; then
  19. export PAWPAW_SKIP_QT=1
  20. fi
  21. ./bootstrap-common.sh "${target}"
  22. ./bootstrap-plugins.sh "${target}"
  23. ./bootstrap-carla.sh "${target}"
  24. # ---------------------------------------------------------------------------------------------------------------------