mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-23 16:22:58 +03:00
limereport.pri for static building and aliases have been added
This commit is contained in:
parent
7da0cfd7e2
commit
3807ac0c57
@ -33,8 +33,8 @@
|
|||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
#include <QtSql/QSqlQuery>
|
#include <QtSql/QSqlQuery>
|
||||||
#include <QtSql/QSqlRecord>
|
#include <QtSql/QSqlRecord>
|
||||||
#include "lrreportengine.h"
|
#include <LimeReport>
|
||||||
#include "lrcallbackdatasourceintf.h"
|
#include <LRCallbackDS>
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include <QStringListModel>
|
#include <QStringListModel>
|
||||||
|
|
||||||
@ -104,6 +104,8 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
MainWindow::~MainWindow()
|
MainWindow::~MainWindow()
|
||||||
{
|
{
|
||||||
delete ui;
|
delete ui;
|
||||||
|
delete m_customers;
|
||||||
|
delete m_orders;
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_pushButton_clicked()
|
void MainWindow::on_pushButton_clicked()
|
||||||
|
5
limereport.pri
Normal file
5
limereport.pri
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
CONFIG += zint
|
||||||
|
include(./limereport/limereport.pri)
|
||||||
|
contains(CONFIG, zint){
|
||||||
|
include(./qzint.pri)
|
||||||
|
}
|
1
limereport/LRCallbackDS
Normal file
1
limereport/LRCallbackDS
Normal file
@ -0,0 +1 @@
|
|||||||
|
#include "lrcallbackdatasourceintf.h"
|
1
limereport/LRDataManager
Normal file
1
limereport/LRDataManager
Normal file
@ -0,0 +1 @@
|
|||||||
|
#include "lrdatasourcemanagerintf.h"
|
1
limereport/LRScriptManager
Normal file
1
limereport/LRScriptManager
Normal file
@ -0,0 +1 @@
|
|||||||
|
#include "lrscriptenginemanagerintf.h"
|
1
limereport/LimeReport
Normal file
1
limereport/LimeReport
Normal file
@ -0,0 +1 @@
|
|||||||
|
#include "lrreportengine.h"
|
64
qzint.pri
Normal file
64
qzint.pri
Normal 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
|
Loading…
Reference in New Issue
Block a user