0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-09-23 08:29:07 +03:00

If compiling in debug mode append a "d" to the Target and also link to that files

This commit is contained in:
Spiek
2017-07-18 18:09:28 +02:00
parent 4e1a680e09
commit 6b0195cb89
5 changed files with 52 additions and 9 deletions

View File

@@ -1,7 +1,12 @@
include(../common.pri)
QT += core gui
TARGET = LRDemo_r2
contains(CONFIG,release) {
TARGET = LRDemo_r2
} else {
TARGET = LRDemo_r2d
}
TEMPLATE = app
SOURCES += main.cpp\
@@ -57,7 +62,12 @@ win32 {
LIBS += -L$${DEST_LIBS} -lQtZint
}
}
LIBS += -L$${DEST_LIBS} -llimereport
LIBS += -L$${DEST_LIBS}
contains(CONFIG,release) {
LIBS += -llimereport
} else {
LIBS += -llimereportd
}
QMAKE_POST_LINK += $$QMAKE_COPY_DIR $$shell_quote($$EXTRA_DIR\\*) $$shell_quote($$REPORTS_DIR\\demo_reports) $$escape_expand(\\n\\t)
}