mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-25 21:14:39 +03:00
28 lines
656 B
Plaintext
28 lines
656 B
Plaintext
include(../../common.pri)
|
|
include($$PWD/3rdparty/qtcreator/designerintegrationv2/designerintegration.pri)
|
|
INCLUDEPATH *= $$PWD/3rdparty/designer
|
|
greaterThan(QT_MAJOR_VERSION, 4) {
|
|
contains(QT,uitools){
|
|
DEFINES += HAVE_QTDESIGNER_INTEGRATION
|
|
}
|
|
}
|
|
lessThan(QT_MAJOR_VERSION, 5){
|
|
contains(CONFIG,uitools){
|
|
DEFINES += HAVE_QTDESIGNER_INTEGRATION
|
|
}
|
|
}
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4) {
|
|
QT *= designer designercomponents-private
|
|
|
|
} else {
|
|
CONFIG *= designer
|
|
qtAddLibrary( QtDesignerComponents )
|
|
}
|
|
|
|
SOURCES += $$PWD/lrdialogdesigner.cpp
|
|
HEADERS += $$PWD/lrdialogdesigner.h
|
|
|
|
RESOURCES += \
|
|
$$PWD/dialogdesigner.qrc
|