Create qamqpInterface.pri

With this .pri file, you can import this library by setting the variable QAMQP_HOME

You need to put include and lib files into same directory of qamqpInterface.pri.

include($${QAMQP_HOME}/qamqpInterface.pri)
This commit is contained in:
Ernesto De Stefano 2016-02-29 17:22:51 +01:00
parent f6777e66df
commit d9dcf07723
1 changed files with 7 additions and 0 deletions

7
src/qamqpInterface.pri Normal file
View File

@ -0,0 +1,7 @@
INCLUDEPATH += $${PWD}
CONFIG(debug, debug|release){
LIBS += -L$$PWD -lqamqpd
} else {
LIBS += -L$$PWD -lqamqp
}