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

@@ -19,7 +19,16 @@ unix{
INCLUDEPATH += $$PWD/../backend
DEFINES += _CRT_SECURE_NO_WARNINGS _CRT_NONSTDC_NO_WARNINGS ZINT_VERSION=\\\"$$VERSION\\\"
DEFINES += QZINT_LIBRARY
TARGET = QtZint
#TARGET = QtZint
CONFIG(debug, debug|release) {
TARGET = QtZintd
} else {
TARGET = QtZint
}
!contains(DEFINES, NO_PNG) {
SOURCES += $$PWD/../backend/png.c