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.

34 lines
660B

  1. #!/bin/bash
  2. set -e
  3. # Preparation
  4. export CC=gcc-8
  5. export CXX=g++-8
  6. export PKG_CONFIG_PATH=/opt/kxstudio/lib/pkgconfig:${PKG_CONFIG_PATH}
  7. unset CFLAGS
  8. unset CXXFLAGS
  9. unset LDFLAGS
  10. # Start clean
  11. make distclean >/dev/null
  12. # Print available features
  13. make features
  14. # Build things that we skip strict tests for
  15. make -C source/modules/audio_decoder
  16. make -C source/modules/dgl
  17. make -C source/modules/hylia
  18. make -C source/modules/rtaudio
  19. make -C source/modules/rtmidi
  20. make -C source/modules/sfzero
  21. make -C source/modules/water all posix32
  22. make -C source/theme all qt4 qt5
  23. # Build native stuff
  24. make TESTBUILD=true
  25. # Build 32bit bridges
  26. make TESTBUILD=true posix32