summaryrefslogtreecommitdiffstats
path: root/src/qtdiag
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@qt.io>2017-01-19 11:35:43 +0100
committerJoerg Bornemann <joerg.bornemann@qt.io>2017-01-19 15:22:28 +0000
commit50200d1614f67eacf5606ac7275faa40b20ec312 (patch)
treee5c2f5110731a5dba914ec110e8997bdac16f2b6 /src/qtdiag
parent6eb7f87bc37eb95d98aaa103a2a20bbfaa408c98 (diff)
move project file statements to canonical locations
load(qt_app) belongs at the end of the project file, while option(host_build) at the top. Change-Id: Icaa80e6436d84eee91f6ccf91051c139e80a0b64 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'src/qtdiag')
-rw-r--r--src/qtdiag/qtdiag.pro4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qtdiag/qtdiag.pro b/src/qtdiag/qtdiag.pro
index ebda95822..1dacd9c0b 100644
--- a/src/qtdiag/qtdiag.pro
+++ b/src/qtdiag/qtdiag.pro
@@ -1,5 +1,3 @@
-load(qt_app)
-
CONFIG += console
QT += core-private gui-private
@@ -10,3 +8,5 @@ qtHaveModule(network) {
SOURCES += main.cpp qtdiag.cpp
HEADERS += qtdiag.h
+
+load(qt_app)