15b78b3b54
Remove unnecessary version in tests/manual since they are always true in the CMake port where it's impossible to have a QtVersion less than 6.0. Change-Id: I26a13117a8c2e032a9cc70ca0f040122cbf79886 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
17 lines
491 B
Prolog
17 lines
491 B
Prolog
QT += core gui widgets
|
|
qtHaveModule(printsupport): QT += printsupport
|
|
|
|
TARGET = dialogs
|
|
TEMPLATE = app
|
|
|
|
SOURCES += main.cpp filedialogpanel.cpp colordialogpanel.cpp fontdialogpanel.cpp \
|
|
wizardpanel.cpp messageboxpanel.cpp utils.cpp
|
|
HEADERS += filedialogpanel.h colordialogpanel.h fontdialogpanel.h \
|
|
wizardpanel.h messageboxpanel.h utils.h
|
|
|
|
!contains(DEFINES, QT_NO_PRINTER) {
|
|
SOURCES += printdialogpanel.cpp
|
|
HEADERS += printdialogpanel.h
|
|
FORMS += printdialogpanel.ui
|
|
}
|