LimeReport/limereport.pro
Rodrigo Torres 53683a8c89 Properly detect Qt 6
It doesn't compile yet on Qt 6 but I'm working on it.
2021-08-20 13:50:06 -03:00

24 lines
401 B
Prolog

TEMPLATE = subdirs
include(common.pri)
CONFIG += ordered
CONFIG(zint) {
SUBDIRS += 3rdparty
}
SUBDIRS += \
limereport \
demo_r1 \
demo_r2 \
designer
if(equals(QT_MAJOR_VERSION, 5) : greaterThan(QT_MINOR_VERSION, 1)) | equals(QT_MAJOR_VERSION, 6) {
SUBDIRS += console
}
!CONFIG(embedded_designer) : !CONFIG(static_build) {
SUBDIRS += designer_plugin
}