commit 4c5da3f95469a26a4aa93c10798546fcafb2a58d parent 7c82a93925c9d1ee9bf8c1c1000096090567cba8 Author: falkTX <falktx@falktx.com> Date: Fri, 23 Aug 2019 17:18:02 +0100 Test no namespace and custom namespace on CI Diffstat:
M | .travis/script-linux.sh | | | 12 | +++++++++--- |
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/.travis/script-linux.sh b/.travis/script-linux.sh @@ -7,8 +7,14 @@ _FLAGS="-Werror" export CFLAGS="${_FLAGS}" export CXXFLAGS="${_FLAGS}" -# Start clean +echo "==============> Normal build" make clean >/dev/null - -# Build now make + +echo "==============> No namespace build" +make clean >/dev/null +make CXXFLAGS="${_FLAGS} -DDONT_SET_USING_DISTRHO_NAMESPACE" + +echo "==============> Custom namespace build" +make clean >/dev/null +make CXXFLAGS="${_FLAGS} -DDISTRHO_NAMESPACE=WubbWubb -DDGL_NAMESPACE=DabDab"