zint-barcode-generator/frontend_qt/frontend_qt.pro

70 lines
1.5 KiB
Prolog
Raw Normal View History

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