summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Wolff <oliver.wolff@theqtcompany.com>2014-12-10 08:55:13 +0100
committerOliver Wolff <oliver.wolff@theqtcompany.com>2014-12-10 11:26:27 +0100
commit9cc3e6183262e84bb527e4c7f042d306e44fc140 (patch)
tree20717fb3aacefb72f846a8f0f7ff7e6a9a01077b
parent7539ff18e650a57665160792da195d86d967906b (diff)
downloadqtactiveqt-9cc3e6183262e84bb527e4c7f042d306e44fc140.tar.gz
One less duplicated condition by moving the Windows only message
Change-Id: I1877f1e8b77407c724f41fc076a113cdeba86431 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@theqtcompany.com> Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
-rw-r--r--qtactiveqt.pro3
-rw-r--r--src/activeqt/activeqt.pro1
2 files changed, 1 insertions, 3 deletions
diff --git a/qtactiveqt.pro b/qtactiveqt.pro
index 83d709a..b993871 100644
--- a/qtactiveqt.pro
+++ b/qtactiveqt.pro
@@ -1,7 +1,4 @@
CONFIG += tests_need_tools
load(qt_parts)
-!win32|winrt|wince {
- message("ActiveQt is a Windows Desktop-only module. Will just generate a docs target.")
-}
SUBDIRS = src
diff --git a/src/activeqt/activeqt.pro b/src/activeqt/activeqt.pro
index 8322bb9..090566e 100644
--- a/src/activeqt/activeqt.pro
+++ b/src/activeqt/activeqt.pro
@@ -6,6 +6,7 @@ win32:!winrt:!wince {
SUBDIRS = axshared container control
} else {
# fake project for creating the documentation
+ message("ActiveQt is a Windows Desktop-only module. Will just generate a docs target.")
TEMPLATE = aux
QMAKE_DOCS = $$PWD/doc/activeqt.qdocconf
}