0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-09-23 16:39:07 +03:00

Some limereport's project structure changes

This commit is contained in:
Arin Alexander
2016-03-22 15:55:02 +03:00
parent 6c7443c510
commit 0550654b04
12 changed files with 558 additions and 1344 deletions

29
common.pri Normal file
View File

@@ -0,0 +1,29 @@
CONFIG += zint
ZINT_PATH = $$PWD/3rdparty/zint-2.4.4
LIMEREPORT_VERSION_MAJOR = 1
LIMEREPORT_VERSION_MINOR = 3
LIMEREPORT_VERSION_RELEASE = 10
LIMEREPORT_VERSION = '\\"$${LIMEREPORT_VERSION_MAJOR}.$${LIMEREPORT_VERSION_MINOR}.$${LIMEREPORT_VERSION_RELEASE}\\"'
DEFINES += LIMEREPORT_VERSION_STR=\"$${LIMEREPORT_VERSION}\"
DEFINES += LIMEREPORT_VERSION=$${LIMEREPORT_VERSION}
QT += script xml sql
REPORT_PATH = $$PWD/limereport
greaterThan(QT_MAJOR_VERSION, 4) {
DEFINES+=HAVE_QT5
QT+= printsupport widgets
contains(QT,uitools){
message(uitools)
DEFINES += HAVE_UI_LOADER
}
}
lessThan(QT_MAJOR_VERSION, 5){
CONFIG(uitools){
message(uitools)
DEFINES += HAVE_UI_LOADER
}
}