0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-26 09:28:11 +03:00
LimeReport/designer_plugin/designer_plugin.pro

47 lines
872 B
Prolog
Raw Normal View History

2017-11-24 00:13:47 +03:00
QT += core gui
include(../common.pri)
include(../limereport/limereport.pri)
include(../limereport/designer.pri)
2017-11-24 00:13:47 +03:00
contains(CONFIG,release) {
2017-11-30 21:23:51 +03:00
TARGET = designer_plugin
2017-11-24 00:13:47 +03:00
} else {
2017-11-30 21:23:51 +03:00
TARGET = designer_plugind
2017-11-24 00:13:47 +03:00
}
TEMPLATE = lib
CONFIG += plugin
HEADERS += \
lrdesignerplugin.h
SOURCES += \
lrdesignerplugin.cpp
INCLUDEPATH += $$PWD/../include
DEPENDPATH += $$PWD/../include
macx{
CONFIG += lib_bundle
CONFIG += -dll
}
DESTDIR = $${DEST_LIBS}
unix {
target.path = $${DESTDIR}
INSTALLS = target
}
contains(CONFIG,zint){
message(zint)
INCLUDEPATH += $$ZINT_PATH/backend $$ZINT_PATH/backend_qt
DEPENDPATH += $$ZINT_PATH/backend $$ZINT_PATH/backend_qt
LIBS += -L$${DEST_LIBS}
2019-01-16 04:00:54 +03:00
CONFIG(debug, debug|release){
2017-11-24 00:13:47 +03:00
LIBS += -lQtZintd
2019-01-16 04:00:54 +03:00
} else {
LIBS += -lQtZint
2017-11-24 00:13:47 +03:00
}
}