Update src.pro
For build debug and release: After you include qamqpInterface.pri, you will link debug and release library depending on the current qmake build configuration.
This commit is contained in:
parent
3ac5daaf33
commit
d7a59f7ef0
|
|
@ -3,6 +3,9 @@ include(../qamqp.pri)
|
||||||
INCLUDEPATH += .
|
INCLUDEPATH += .
|
||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
TARGET = qamqp
|
TARGET = qamqp
|
||||||
|
build_pass:CONFIG(debug, debug|release) {
|
||||||
|
TARGET = $$join(TARGET,,,d)
|
||||||
|
}
|
||||||
QT += core network
|
QT += core network
|
||||||
QT -= gui
|
QT -= gui
|
||||||
DEFINES += QAMQP_BUILD
|
DEFINES += QAMQP_BUILD
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue