limereport.pri for static building and aliases have been added

This commit is contained in:
Arin Alexander 2016-12-22 02:08:27 +03:00
parent 7da0cfd7e2
commit 3807ac0c57
7 changed files with 77 additions and 2 deletions

View File

@ -33,8 +33,8 @@
#include <QMessageBox>
#include <QtSql/QSqlQuery>
#include <QtSql/QSqlRecord>
#include "lrreportengine.h"
#include "lrcallbackdatasourceintf.h"
#include <LimeReport>
#include <LRCallbackDS>
#include <QDebug>
#include <QStringListModel>
@ -104,6 +104,8 @@ MainWindow::MainWindow(QWidget *parent) :
MainWindow::~MainWindow()
{
delete ui;
delete m_customers;
delete m_orders;
}
void MainWindow::on_pushButton_clicked()

5
limereport.pri Normal file
View File

@ -0,0 +1,5 @@
CONFIG += zint
include(./limereport/limereport.pri)
contains(CONFIG, zint){
include(./qzint.pri)
}

1
limereport/LRCallbackDS Normal file
View File

@ -0,0 +1 @@
#include "lrcallbackdatasourceintf.h"

1
limereport/LRDataManager Normal file
View File

@ -0,0 +1 @@
#include "lrdatasourcemanagerintf.h"

View File

@ -0,0 +1 @@
#include "lrscriptenginemanagerintf.h"

1
limereport/LimeReport Normal file
View File

@ -0,0 +1 @@
#include "lrreportengine.h"

64
qzint.pri Normal file
View File

@ -0,0 +1,64 @@
DEFINES += _CRT_SECURE_NO_WARNINGS _CRT_NONSTDC_NO_WARNINGS ZINT_VERSION=\\\"$$ZINT_VERSION\\\" NO_PNG
!contains(DEFINES, NO_PNG) {
LIBS += -lpng
}
INCLUDEPATH += \
$$ZINT_PATH/backend \
$$ZINT_PATH/backend_qt4
HEADERS += $$ZINT_PATH/backend/aztec.h \
$$ZINT_PATH/backend/code1.h \
$$ZINT_PATH/backend/code49.h \
$$ZINT_PATH/backend/common.h \
$$ZINT_PATH/backend/composite.h \
$$ZINT_PATH/backend/dmatrix.h \
$$ZINT_PATH/backend/font.h \
$$ZINT_PATH/backend/gb2312.h \
$$ZINT_PATH/backend/gridmtx.h \
$$ZINT_PATH/backend/gs1.h \
$$ZINT_PATH/backend/large.h \
$$ZINT_PATH/backend/maxicode.h \
$$ZINT_PATH/backend/maxipng.h \
$$ZINT_PATH/backend/ms_stdint.h \
$$ZINT_PATH/backend/pdf417.h \
$$ZINT_PATH/backend/qr.h \
$$ZINT_PATH/backend/reedsol.h \
$$ZINT_PATH/backend/rss.h \
$$ZINT_PATH/backend/sjis.h \
$$ZINT_PATH/backend/zint.h \
$$ZINT_PATH/backend_qt4/qzint.h
SOURCES += $$ZINT_PATH/backend/2of5.c \
$$ZINT_PATH/backend/auspost.c \
$$ZINT_PATH/backend/aztec.c \
$$ZINT_PATH/backend/code.c \
$$ZINT_PATH/backend/code1.c \
$$ZINT_PATH/backend/code128.c \
$$ZINT_PATH/backend/code16k.c \
$$ZINT_PATH/backend/code49.c \
$$ZINT_PATH/backend/common.c \
$$ZINT_PATH/backend/composite.c \
$$ZINT_PATH/backend/dmatrix.c \
$$ZINT_PATH/backend/gridmtx.c \
$$ZINT_PATH/backend/gs1.c \
$$ZINT_PATH/backend/imail.c \
$$ZINT_PATH/backend/large.c \
$$ZINT_PATH/backend/library.c \
$$ZINT_PATH/backend/maxicode.c \
$$ZINT_PATH/backend/medical.c \
$$ZINT_PATH/backend/pdf417.c \
$$ZINT_PATH/backend/plessey.c \
$$ZINT_PATH/backend/postal.c \
$$ZINT_PATH/backend/ps.c \
$$ZINT_PATH/backend/qr.c \
$$ZINT_PATH/backend/reedsol.c \
$$ZINT_PATH/backend/render.c \
$$ZINT_PATH/backend/rss.c \
$$ZINT_PATH/backend/svg.c \
$$ZINT_PATH/backend/telepen.c \
$$ZINT_PATH/backend/upcean.c \
$$ZINT_PATH/backend/dllversion.c \
$$ZINT_PATH/backend/png.c \
$$ZINT_PATH/backend_qt4/qzint.cpp