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

-target names for debug built dlls have now a "d" suffix

This commit is contained in:
arne krüger
2018-03-09 18:33:59 +01:00
parent dbd753b4d3
commit da9099cecb
8 changed files with 132 additions and 15 deletions

View File

@@ -1,4 +1,13 @@
TARGET = limereport
#TARGET = limereport
CONFIG(debug, debug|release) {
TARGET = limereportd
} else {
TARGET = limereport
}
TEMPLATE = lib
CONFIG += lib
@@ -60,7 +69,14 @@ contains(CONFIG,zint){
message(zint)
INCLUDEPATH += $$ZINT_PATH/backend $$ZINT_PATH/backend_qt4
DEPENDPATH += $$ZINT_PATH/backend $$ZINT_PATH/backend_qt4
LIBS += -L$${DEST_LIBS} -lQtZint
LIBS += -L$${DEST_LIBS}
CONFIG(debug, debug|release) {
LIBS += -lQtZintd
} else {
LIBS += -lQtZint
}
}
#######