Audio plugin host https://kx.studio/carla
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.

40 lines
922B

  1. #!/bin/bash
  2. VERSION="2.1-RC1"
  3. # ---------------------------------------------------------------------------------------------------------------------
  4. # stop on error
  5. set -e
  6. # ---------------------------------------------------------------------------------------------------------------------
  7. # cd to correct path
  8. if [ ! -f Makefile ]; then
  9. cd $(dirname $0)/../..
  10. fi
  11. # ---------------------------------------------------------------------------------------------------------------------
  12. # start
  13. make distclean
  14. pushd data/windows
  15. ./build-win.sh 32nosse
  16. ./pack-win.sh 32nosse
  17. mv Carla_${VERSION}-win32.zip Carla_${VERSION}-win32-nosse.zip
  18. popd
  19. make distclean
  20. pushd data/windows
  21. ./build-win.sh 32
  22. ./pack-win.sh 32
  23. popd
  24. make distclean
  25. pushd data/windows
  26. ./build-win.sh 64
  27. ./pack-win.sh 64
  28. popd
  29. # ---------------------------------------------------------------------------------------------------------------------