annotate platform-dataquay.pri @ 698:ee97c742d184 tip

Default branch is now named default on git as well as hg, in case we ever want to switch to mirroring in the other direction
author Chris Cannam
date Thu, 27 Aug 2020 15:58:43 +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