summaryrefslogtreecommitdiffstats
path: root/src/widgets/dialogs/dialogs.pri
diff options
context:
space:
mode:
authorStephan Binner <stephan.binner@basyskom.com>2017-05-31 21:28:32 +0200
committerStephan Binner <stephan.binner@basyskom.com>2017-07-02 10:38:46 +0000
commit330f0245898dd2c163a3a8b8dfb7b672cf8def3b (patch)
tree94194e7cc330c13a22651e93942afca8dc092d84 /src/widgets/dialogs/dialogs.pri
parent3ab0ba7bf2b27f73b38a6f60181426c05f1d3af0 (diff)
Convert features.wizard to QT_[REQUIRE_]CONFIG
Change-Id: I43e3d9f55a21ae0f602fc43c570321d0152cd8b6 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
Diffstat (limited to 'src/widgets/dialogs/dialogs.pri')
-rw-r--r--src/widgets/dialogs/dialogs.pri21
1 files changed, 12 insertions, 9 deletions
diff --git a/src/widgets/dialogs/dialogs.pri b/src/widgets/dialogs/dialogs.pri
index 0ebb912ffc..718db3bb5d 100644
--- a/src/widgets/dialogs/dialogs.pri
+++ b/src/widgets/dialogs/dialogs.pri
@@ -7,21 +7,14 @@ HEADERS += \
dialogs/qfontdialog_p.h \
dialogs/qfilesystemmodel.h \
dialogs/qfilesystemmodel_p.h \
- dialogs/qfileinfogatherer_p.h \
- dialogs/qwizard.h
-
-win32 {
- HEADERS += dialogs/qwizard_win_p.h
- SOURCES += dialogs/qwizard_win.cpp
-}
+ dialogs/qfileinfogatherer_p.h
INCLUDEPATH += $$PWD
SOURCES += \
dialogs/qerrormessage.cpp \
dialogs/qfontdialog.cpp \
dialogs/qfilesystemmodel.cpp \
- dialogs/qfileinfogatherer.cpp \
- dialogs/qwizard.cpp \
+ dialogs/qfileinfogatherer.cpp
qtConfig(colordialog) {
HEADERS += dialogs/qcolordialog.h
@@ -65,3 +58,13 @@ qtConfig(progressdialog) {
HEADERS += dialogs/qprogressdialog.h
SOURCES += dialogs/qprogressdialog.cpp
}
+
+qtConfig(wizard) {
+ HEADERS += dialogs/qwizard.h
+ SOURCES += dialogs/qwizard.cpp
+
+ win32 {
+ HEADERS += dialogs/qwizard_win_p.h
+ SOURCES += dialogs/qwizard_win.cpp
+ }
+}