annotate base.pri @ 2152:60d78294ea3a

Oookay... Travis's Trusty image is now too old for the bundled hg to be able to connect to Bitbucket after the latter switched off TLS 1.0 and 1.1 support this month. So we must either use a newer image, or find another workaround. Let's try the newer image first, since we'd probably be using that already if it had existed when we set this up
author Chris Cannam
date Thu, 06 Dec 2018 09:36:08 +0000
parents f474b3931217
children bc3d0c86ee2e
rev   line source
Chris@1332 1
Chris@1332 2 SV_INCLUDEPATH = \
Chris@1332 3 . \
Chris@1332 4 bqvec \
Chris@1332 5 bqvec/bqvec \
Chris@1349 6 bqfft \
Chris@1332 7 bqresample \
Chris@1332 8 bqaudioio \
Chris@1332 9 bqaudioio/bqaudioio \
Chris@2045 10 piper-vamp-cpp \
Chris@1332 11 checker \
Chris@1332 12 checker/checker \
Chris@1332 13 dataquay \
Chris@1332 14 dataquay/dataquay \
Chris@1332 15 svcore \
Chris@1332 16 svcore/data \
Chris@1332 17 svcore/plugin/api/alsa \
Chris@1332 18 svgui \
Chris@1332 19 svapp \
Chris@2128 20 vamp-plugin-sdk \
Chris@2128 21 rubberband \
Chris@2128 22 rubberband/src
Chris@1332 23
Chris@1332 24 DEPENDPATH += $$SV_INCLUDEPATH
Chris@1332 25 INCLUDEPATH += $$SV_INCLUDEPATH
Chris@1332 26
Chris@1332 27 # Platform defines for RtMidi
Chris@1644 28 linux*: DEFINES += __LINUX_ALSASEQ__ __LINUX_ALSA__
Chris@1332 29 macx*: DEFINES += __MACOSX_CORE__
Chris@1332 30 win*: DEFINES += __WINDOWS_MM__
Chris@1332 31 solaris*: DEFINES += __RTMIDI_DUMMY_ONLY__
Chris@1332 32
Chris@1332 33 # Defines for Dataquay
Chris@1332 34 DEFINES += USE_SORD
Chris@1332 35
Chris@2128 36 # Defines for Rubber Band
Chris@2128 37 linux*: DEFINES += USE_PTHREADS
Chris@2128 38 macx*: DEFINES += USE_PTHREADS
Chris@2128 39
Chris@1976 40 CONFIG += qt thread warn_on stl rtti exceptions
Chris@1332 41