diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2014-07-20 20:44:37 +0200 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2014-07-20 20:44:37 +0200 |
| commit | 4e8734c75e38be6af4d3882e4858d716317f16cd (patch) | |
| tree | 088b322c0179ea3aa0fe779f52ccfb8d25060479 | |
| parent | f6149cef3b4f87689a481efad47a9ddef4995889 (diff) | |
| download | qxmpp-4e8734c75e38be6af4d3882e4858d716317f16cd.tar.gz | |
actually test with clang
| -rwxr-xr-x | tests/travis/build-and-test.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/travis/build-and-test.sh b/tests/travis/build-and-test.sh index c1695b61..b0658ec2 100755 --- a/tests/travis/build-and-test.sh +++ b/tests/travis/build-and-test.sh @@ -2,6 +2,16 @@ set -e BUILD_FLAGS="" + +if [ -n "$CC" ]; then + BUILD_FLAGS="$BUILD_FLAGS QMAKE_CC=$CC" +fi + + +if [ -n "$CXX" ]; then + BUILD_FLAGS="$BUILD_FLAGS QMAKE_CXX=$CXX" +fi + case "$CONFIG" in full*) BUILD_FLAGS="$BUILD_FLAGS QXMPP_USE_SPEEX=1 QXMPP_USE_THEORA=1" |
