mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-24 00:33:02 +03:00
23 lines
377 B
Plaintext
23 lines
377 B
Plaintext
QT += xml sql script
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4) {
|
|
QT += widgets printsupport
|
|
}
|
|
|
|
INCLUDEPATH += $$[QT_INSTALL_HEADERS]/LimeReport
|
|
|
|
CONFIG(debug, debug|release) {
|
|
LIB_NAME = limereportd
|
|
} else {
|
|
LIB_NAME = limereport
|
|
}
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4) {
|
|
LIBS += -l$${LIB_NAME}
|
|
} else {
|
|
qtAddLibrary($${LIB_NAME})
|
|
}
|
|
|
|
DEFINES += LIMEREPORT
|
|
DEFINES -= NO_LIMEREPORT
|