mirror of
https://git.code.sf.net/p/zint/code
synced 2025-12-24 05:17:05 +00:00
qmake project file for qtZint
This commit is contained in:
43
frontend_qt4/frontend_vcx.pro
Normal file
43
frontend_qt4/frontend_vcx.pro
Normal file
@@ -0,0 +1,43 @@
|
||||
TEMPLATE = vcapp
|
||||
TARGET = qtZint
|
||||
CONFIG += warn_on \
|
||||
thread \
|
||||
qt \
|
||||
uitools
|
||||
|
||||
FORMS = mainWindow.ui \
|
||||
extSequence.ui \
|
||||
extExport.ui \
|
||||
extData.ui
|
||||
|
||||
HEADERS = mainwindow.h \
|
||||
barcodeitem.h \
|
||||
datawindow.h \
|
||||
exportwindow.h \
|
||||
sequencewindow.h
|
||||
|
||||
SOURCES = main.cpp \
|
||||
mainwindow.cpp \
|
||||
barcodeitem.cpp \
|
||||
datawindow.cpp \
|
||||
exportwindow.cpp \
|
||||
sequencewindow.cpp
|
||||
|
||||
RESOURCES = resources.qrc
|
||||
|
||||
INCLUDEPATH += ../backend_qt4 ../backend
|
||||
# QMAKE_LIBDIR= path to libpng and zlib libraries
|
||||
# QMAKE_LIBDIR not needed for Framework downloaded from official site
|
||||
QMAKE_LIBDIR += e:/opt/lib
|
||||
|
||||
CONFIG(debug, debug|release) {
|
||||
QMAKE_LIBDIR += ../backend_qt4/debug
|
||||
}
|
||||
|
||||
CONFIG(release, debug|release) {
|
||||
QMAKE_LIBDIR += ../backend_qt4/release
|
||||
}
|
||||
|
||||
RC_FILE = ./res/qtZint.rc
|
||||
# Remove pngMT.lib zlibMT.lib if qt is downloaded from official site
|
||||
LIBS = QtZint2.lib pngMT.lib zlibMT.lib
|
||||
Reference in New Issue
Block a user