mirror of
https://github.com/fralx/LimeReport.git
synced 2025-10-09 05:57:14 +03:00
plugin extracted
This commit is contained in:
44
designer_plugin/designer_plugin.pro
Normal file
44
designer_plugin/designer_plugin.pro
Normal file
@@ -0,0 +1,44 @@
|
||||
include(../common.pri)
|
||||
include(limereport.pri)
|
||||
QT += core gui
|
||||
|
||||
contains(CONFIG,release) {
|
||||
TARGET = LRDesigner_plugin
|
||||
} else {
|
||||
TARGET = LRDesigner_plugind
|
||||
}
|
||||
|
||||
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}
|
||||
contains(CONFIG,release) {
|
||||
LIBS += -lQtZint
|
||||
} else {
|
||||
LIBS += -lQtZintd
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user