0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-26 01:24:39 +03:00
LimeReport/demo_r2/demo_r2.pro

81 lines
1.8 KiB
Prolog
Raw Normal View History

2016-04-02 03:39:45 +03:00
include(../common.pri)
2016-04-02 06:03:11 +03:00
QT += core gui
2016-04-02 03:39:45 +03:00
contains(CONFIG,release) {
TARGET = LRDemo_r2
} else {
TARGET = LRDemo_r2d
}
2016-04-02 03:39:45 +03:00
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp
HEADERS += mainwindow.h
FORMS += mainwindow.ui
INCLUDEPATH += $$PWD/../include
DEPENDPATH += $$PWD/../include
RESOURCES += \
2017-10-05 14:12:12 +03:00
demo_r2.qrc
2016-04-02 03:39:45 +03:00
EXTRA_DIR += $$PWD/demo_reports
2016-04-03 16:33:41 +03:00
DEST_DIR = $${DEST_BINS}
2016-04-02 06:03:11 +03:00
REPORTS_DIR = $${DEST_DIR}
macx{
CONFIG += app_bundle
}
2016-04-02 03:39:45 +03:00
unix:{
2016-04-03 16:33:41 +03:00
LIBS += -L$${DEST_LIBS} -llimereport
!contains(CONFIG, static_build){
contains(CONFIG,zint){
LIBS += -L$${DEST_LIBS} -lQtZint
}
2016-04-02 03:39:45 +03:00
}
DESTDIR = $$DEST_DIR
2016-04-02 06:03:11 +03:00
QMAKE_POST_LINK += $$QMAKE_COPY_DIR $$quote($$EXTRA_DIR) $$quote($$REPORTS_DIR) $$escape_expand(\n\t)
2016-04-02 03:39:45 +03:00
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} -lQtZint
}
2016-04-02 03:39:45 +03:00
}
LIBS += -L$${DEST_LIBS}
contains(CONFIG,release) {
LIBS += -llimereport
} else {
LIBS += -llimereportd
}
2016-05-20 18:13:14 +03:00
2017-10-26 12:24:06 +03:00
greaterThan(QT_MAJOR_VERSION, 4) {
QMAKE_POST_LINK += $$QMAKE_COPY_DIR $$shell_quote($$EXTRA_DIR\\*) $$shell_quote($$REPORTS_DIR\\demo_reports) $$escape_expand(\\n\\t)
}
lessThan(QT_MAJOR_VERSION, 5){
QMAKE_POST_LINK += $$QMAKE_COPY_DIR $$quote($$EXTRA_DIR\\*) $$quote($$REPORTS_DIR\\demo_reports) $$escape_expand(\\n\\t)
}
2016-04-02 03:39:45 +03:00
}