zint/frontend_qt/frontend_qt.pro

80 lines
1.6 KiB
Prolog
Raw Normal View History

2016-08-21 00:21:05 +12:00
TEMPLATE = app
TARGET = qtZint
DEPENDPATH += . debug release
INCLUDEPATH += .
2016-12-12 04:29:06 +13:00
QT += gui
QT += uitools
QT += widgets
QT += uitools
2016-08-21 00:21:05 +12:00
# Input
HEADERS += barcodeitem.h \
datawindow.h \
exportwindow.h \
mainwindow.h \
2020-11-23 09:17:46 +13:00
sequencewindow.h \
qzint.h
2016-08-21 00:21:05 +12:00
FORMS += extData.ui \
extExport.ui \
extSequence.ui \
grpAztec.ui \
grpC11.ui \
2016-08-21 00:21:05 +12:00
grpC128.ui \
grpC16k.ui \
grpC39.ui \
grpC49.ui \
grpChannel.ui \
grpCodabar.ui \
2016-08-21 00:21:05 +12:00
grpCodeOne.ui \
grpCodablockF.ui \
2016-08-21 00:21:05 +12:00
grpDBExtend.ui \
grpDM.ui \
grpGrid.ui \
grpHX.ui \
grpLOGMARS.ui \
2016-08-21 00:21:05 +12:00
grpMaxicode.ui \
grpMicroPDF.ui \
grpMQR.ui \
grpMSICheck.ui \
grpPDF417.ui \
grpQR.ui \
grpRMQR.ui \
grpUPCA.ui \
grpUPCEAN.ui \
grpVIN.ui \
2016-08-21 00:21:05 +12:00
mainWindow.ui \
2016-12-12 04:29:06 +13:00
grpDotCode.ui
2016-08-21 00:21:05 +12:00
SOURCES += barcodeitem.cpp \
datawindow.cpp \
exportwindow.cpp \
main.cpp \
mainwindow.cpp \
2020-11-23 09:17:46 +13:00
sequencewindow.cpp \
qzint.cpp
2016-08-21 00:21:05 +12:00
TRANSLATIONS = frontend_de.ts
RESOURCES += resources.qrc
RC_FILE += res/qtZint.rc
2016-08-21 00:21:05 +12:00
# Static target following http://qt-project.org/wiki/Build_Standalone_Qt_Application_for_Windows
CONFIG += static
CONFIG += warn_on thread qt
2016-08-21 00:21:05 +12:00
2020-11-23 09:17:46 +13:00
INCLUDEPATH += ../backend
2016-08-21 00:21:05 +12:00
2020-11-23 09:17:46 +13:00
LIBS += -lQt5Core
2016-08-21 00:21:05 +12:00
!contains(DEFINES, NO_PNG) {
# Win
2017-01-19 06:07:17 +13:00
win32:LIBS += -llibpng16 -lzlib
win32:QMAKE_LIBDIR+="../../lpng/projects/vstudio/Release Library"
# Unix
2017-01-19 06:07:17 +13:00
#unix:LIBS += -lpng -zlib
#unix:QMAKE_LIBDIR += /usr/local/lib /usr/lib/x86_64-linux-gnu/
2016-08-21 00:21:05 +12:00
}