From 7c6218b4c4e898d815c047070378e5a1f0318e1f Mon Sep 17 00:00:00 2001 From: tgotic Date: Mon, 17 Jan 2011 20:00:48 +0100 Subject: [PATCH] qmake project file for qtZint --- frontend_qt4/frontend_vcx.pro | 43 +++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 frontend_qt4/frontend_vcx.pro diff --git a/frontend_qt4/frontend_vcx.pro b/frontend_qt4/frontend_vcx.pro new file mode 100644 index 00000000..1cfe718f --- /dev/null +++ b/frontend_qt4/frontend_vcx.pro @@ -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