aboutsummaryrefslogtreecommitdiff
path: root/tests/travis
diff options
context:
space:
mode:
authorNiels Ole Salscheider <niels_ole@salscheider-online.de>2018-06-23 17:20:47 +0200
committerGitHub <noreply@github.com>2018-06-23 17:20:47 +0200
commited6b199dff15ddb4c6bd72d1565501e9f1a2bf87 (patch)
tree7bbb53c40ecf53fe9464b53b7966dd7726eeac5e /tests/travis
parentea83c77a5a4524cc9778336b10eff60979582980 (diff)
parent31f0a42073b68823e85835ec3e25114d79705a04 (diff)
downloadqxmpp-ed6b199dff15ddb4c6bd72d1565501e9f1a2bf87.tar.gz
Merge pull request #131 from olesalscheider/cmake
Add CMake build system, drop Qt4 support
Diffstat (limited to 'tests/travis')
-rwxr-xr-xtests/travis/build-and-test32
-rwxr-xr-xtests/travis/install-build-depends7
2 files changed, 7 insertions, 32 deletions
diff --git a/tests/travis/build-and-test b/tests/travis/build-and-test
index 3d6ad4cd..64957ba6 100755
--- a/tests/travis/build-and-test
+++ b/tests/travis/build-and-test
@@ -1,43 +1,23 @@
#!/bin/sh
set -e
-QMAKE_ARGS=""
-
-if [ -n "$CC" ]; then
- QMAKE_ARGS="$QMAKE_ARGS QMAKE_CC=$CC"
-fi
-
-
-if [ -n "$CXX" ]; then
- QMAKE_ARGS="$QMAKE_ARGS QMAKE_CXX=$CXX"
-fi
-
-if [ "$CXX" = "clang++" ]; then
- QMAKE_ARGS="$QMAKE_ARGS QMAKE_LINK=clang++"
- QMAKE_ARGS="$QMAKE_ARGS QMAKE_LINK_SHLIB=clang++"
-fi
+CMAKE_ARGS="-DBUILD_TESTS:BOOL=True"
case "$CONFIG" in
full*)
- QMAKE_ARGS="$QMAKE_ARGS QXMPP_USE_DOXYGEN=1 QXMPP_USE_OPUS=1 QXMPP_USE_SPEEX=1 QXMPP_USE_THEORA=1 QXMPP_USE_VPX=1"
+ CMAKE_ARGS="-DBUILD_DOCUMENTATION:BOOL=True -DBUILD_EXAMPLES:BOOL=True -DWITH_OPUS:BOOL=True -DWITH_SPEEX:BOOL=True -DWITH_THEORA:BOOL=True -DWITH_VPX:BOOL=True"
;;
esac
case "$CONFIG" in
*debug*)
- QMAKE_ARGS="$QMAKE_ARGS CONFIG+=debug"
- ;;
-esac
-
-case "$CONFIG" in
-*static*)
- QMAKE_ARGS="$QMAKE_ARGS QXMPP_LIBRARY_TYPE=staticlib"
+ CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_BUILD_TYPE:STRING=Debug"
;;
esac
# compile
-qmake $QMAKE_ARGS
-make VERBOSE=1
+cmake $CMAKE_ARGS
+make
# run tests
-make check
+make test
diff --git a/tests/travis/install-build-depends b/tests/travis/install-build-depends
index 2ea9a282..f735d816 100755
--- a/tests/travis/install-build-depends
+++ b/tests/travis/install-build-depends
@@ -2,12 +2,7 @@
set -e
sudo apt-get update -qq
-
-if [ "$QT_SELECT" = "qt4" ]; then
- sudo apt-get install -qq libqt4-dev
-else
- sudo apt-get install -qq qtbase5-dev
-fi
+sudo apt-get install -qq qtbase5-dev cmake
case "$CONFIG" in
full*)