annotate platform-dataquay.pri @ 198:bb391844e2aa

Switching pitch candidate no longer wraps around: you can't go higher than the highest or lower than the lowest (though you can go either "up" or "down" if none of the alternate candidates has been selected yet, regardless of whether the candidates are higher or lower than the actual pitch track)
author Chris Cannam
date Wed, 05 Mar 2014 11:39:28 +0000
parents c13ffa2fcdee
children 2a66576d3d4e
rev   line source
Chris@51 1
chris@52 2 exists(config.pri) {
chris@52 3 include(./config.pri)
chris@52 4 }
Chris@51 5
Chris@121 6 !exists(config.pri) {
Chris@121 7 win32-g++ {
Chris@134 8 INCLUDEPATH += ../sv-dependency-builds/win32-mingw/include
Chris@134 9 LIBS += -L../sv-dependency-builds/win32-mingw/lib
Chris@121 10 }
Chris@121 11 win32-msvc* {
Chris@134 12 INCLUDEPATH += ../sv-dependency-builds/win32-msvc/include
Chris@134 13 LIBS += -L../sv-dependency-builds/win32-msvc/lib
Chris@121 14 }
Chris@121 15 macx* {
Chris@134 16 INCLUDEPATH += ../sv-dependency-builds/osx/include
Chris@134 17 LIBS += -L../sv-dependency-builds/osx/lib
Chris@121 18 }
Chris@121 19 }
Chris@121 20
Chris@51 21 CONFIG += staticlib
Chris@51 22
Chris@51 23 DEFINES -= USE_REDLAND
Chris@51 24 QMAKE_CXXFLAGS -= -I/usr/include/rasqal -I/usr/include/raptor2
Chris@51 25 EXTRALIBS -= -lrdf
Chris@51 26
Chris@51 27 DEFINES += USE_SORD
Chris@51 28 # Libraries and paths should be added by config.pri
chris@52 29