aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-02-12 16:18:36 +0100
committerOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-02-25 16:48:52 +0000
commitfd3e39535f98d7d26e83b7094236982401bf1d69 (patch)
treee5f10d139af4ad8efd1ba1a61f07c5bdff1ab7cf
parentb52ffe29bc39cf658aa420d512d719f03c6d5099 (diff)
standardize statement order in project file a bit
Change-Id: Ib5bd2c3cb9fdf0d6ad087bd5e0b0e3096168c72c Reviewed-by: Morten Johan Sørvig <morten.sorvig@theqtcompany.com>
-rw-r--r--src/macextras/macextras.pro9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/macextras/macextras.pro b/src/macextras/macextras.pro
index 33dad81..42e6142 100644
--- a/src/macextras/macextras.pro
+++ b/src/macextras/macextras.pro
@@ -1,6 +1,9 @@
-include($$PWD/macextras-lib.pri)
+TARGET = QtMacExtras
QT_PRIVATE += gui-private core-private
-TARGET = QtMacExtras
-load(qt_module)
+
+include($$PWD/macextras-lib.pri)
+
QMAKE_DOCS = $$PWD/doc/qtmacextras.qdocconf
+
+load(qt_module)