mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-25 21:14:39 +03:00
85f4fcf7ae
# Conflicts: # 3rdparty/zint-2.4.4/backend_qt4/Zint.pro # demo_r1/demo_r1.pro # demo_r2/demo_r2.pro # designer/designer.pro # translations/limereport_ru.ts
74 lines
1.4 KiB
Prolog
74 lines
1.4 KiB
Prolog
include(../common.pri)
|
|
QT += core gui
|
|
|
|
TARGET = LRDesigner
|
|
TEMPLATE = app
|
|
|
|
SOURCES += main.cpp
|
|
|
|
INCLUDEPATH += $$PWD/../include
|
|
DEPENDPATH += $$PWD/../include
|
|
|
|
DEST_DIR = $${DEST_BINS}
|
|
REPORTS_DIR = $${DEST_DIR}
|
|
|
|
macx{
|
|
CONFIG += app_bundle
|
|
}
|
|
|
|
unix:{
|
|
LIBS += -L$${DEST_LIBS}
|
|
CONFIG(debug, debug|release) {
|
|
LIBS += -llimereportd
|
|
} else {
|
|
LIBS += -llimereport
|
|
}
|
|
!contains(CONFIG, static_build){
|
|
contains(CONFIG,zint){
|
|
LIBS += -L$${DEST_LIBS}
|
|
CONFIG(debug, debug|release) {
|
|
LIBS += -lQtZintd
|
|
} else {
|
|
LIBS += -lQtZint
|
|
}
|
|
}
|
|
}
|
|
DESTDIR = $$DEST_DIR
|
|
linux{
|
|
#Link share lib to ../lib rpath
|
|
QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN
|
|
QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN/lib
|
|
QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN/../lib
|
|
QMAKE_LFLAGS_RPATH += #. .. ./libs
|
|
}
|
|
target.path = $${DEST_DIR}
|
|
INSTALLS = target
|
|
}
|
|
|
|
win32 {
|
|
EXTRA_DIR ~= s,/,\\,g
|
|
DEST_DIR ~= s,/,\\,g
|
|
REPORTS_DIR ~= s,/,\\,g
|
|
|
|
DESTDIR = $$DEST_DIR
|
|
RC_FILE += mainicon.rc
|
|
!contains(CONFIG, static_build){
|
|
contains(CONFIG,zint){
|
|
LIBS += -L$${DEST_LIBS}
|
|
CONFIG(debug, debug|release) {
|
|
LIBS += -lQtZintd
|
|
} else {
|
|
LIBS += -lQtZint
|
|
}
|
|
}
|
|
}
|
|
|
|
LIBS += -L$${DEST_LIBS}
|
|
CONFIG(debug, debug|release) {
|
|
LIBS += -llimereportd
|
|
} else {
|
|
LIBS += -llimereport
|
|
}
|
|
}
|
|
|