DISTRHO Plugin Framework
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.

21 lines
443B

  1. #!/bin/bash
  2. set -e
  3. # Preparation
  4. _FLAGS="-Werror"
  5. export CFLAGS="${_FLAGS}"
  6. export CXXFLAGS="${_FLAGS}"
  7. echo "==============> Normal build"
  8. make clean >/dev/null
  9. make
  10. echo "==============> No namespace build"
  11. make clean >/dev/null
  12. make CXXFLAGS="${_FLAGS} -DDONT_SET_USING_DISTRHO_NAMESPACE"
  13. echo "==============> Custom namespace build"
  14. make clean >/dev/null
  15. make CXXFLAGS="${_FLAGS} -DDISTRHO_NAMESPACE=WubbWubb -DDGL_NAMESPACE=DabDab"