annotate platform-dataquay.pri @ 516:449a0355f864 v2.0_osx_deploy

Deployment fixes. Qt on OSX now seems to depend on QtDBus, so copy that in, and also fail if anything is found to depend on an absent Qt framework.
author Chris Cannam
date Fri, 23 Oct 2015 08:50:39 +0100
parents 5bedf83681ed
children
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@202 7 CONFIG += release
Chris@121 8 win32-g++ {
Chris@134 9 INCLUDEPATH += ../sv-dependency-builds/win32-mingw/include
Chris@134 10 LIBS += -L../sv-dependency-builds/win32-mingw/lib
Chris@121 11 }
Chris@121 12 win32-msvc* {
Chris@134 13 INCLUDEPATH += ../sv-dependency-builds/win32-msvc/include
Chris@134 14 LIBS += -L../sv-dependency-builds/win32-msvc/lib
Chris@121 15 }
Chris@121 16 macx* {
Chris@134 17 INCLUDEPATH += ../sv-dependency-builds/osx/include
Chris@134 18 LIBS += -L../sv-dependency-builds/osx/lib
Chris@121 19 }
Chris@121 20 }
Chris@121 21
Chris@407 22 CONFIG += staticlib c++11
Chris@51 23
Chris@51 24 DEFINES -= USE_REDLAND
Chris@51 25 QMAKE_CXXFLAGS -= -I/usr/include/rasqal -I/usr/include/raptor2
Chris@399 26 QMAKE_CXXFLAGS -= -Werror
Chris@51 27 EXTRALIBS -= -lrdf
Chris@51 28
Chris@51 29 DEFINES += USE_SORD
Chris@51 30 # Libraries and paths should be added by config.pri
chris@52 31