summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-02-12 16:35:18 +0100
committerOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-04-12 12:44:48 +0000
commit7bceefea6fe942d3012d89786e83c5e5220e6690 (patch)
treea0ad8e3c9a5a8b51b4c591386a864a772ec4cd54 /src
parentb09a037836111a2e11a5c975573c02ba1f52379e (diff)
consistently put {qt,qml}_{module,plugin} at the end of project files
this fixes static builds by ensuring that all dependencies are exported. Task-number: QTBUG-51071 Change-Id: I778330b156ed5d087fd5cf72765336770a24fe37 Reviewed-by: Jake Petroules <jake.petroules@theqtcompany.com> Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@theqtcompany.com>
Diffstat (limited to 'src')
-rw-r--r--src/imports/purchasing/purchasing.pro4
-rw-r--r--src/purchasing/purchasing.pro4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/imports/purchasing/purchasing.pro b/src/imports/purchasing/purchasing.pro
index e9440e4..2f49773 100644
--- a/src/imports/purchasing/purchasing.pro
+++ b/src/imports/purchasing/purchasing.pro
@@ -9,8 +9,6 @@ SOURCES += \
$$PWD/qinappproductqmltype.cpp \
$$PWD/qinappstoreqmltype.cpp
-load(qml_plugin)
-
win32 {
CONFIG += skip_target_version_ext
VERSION = $$MODULE_VERSION
@@ -23,3 +21,5 @@ HEADERS += \
$$PWD/qinappstoreqmltype_p.h
OTHER_FILES += qmldir
+
+load(qml_plugin)
diff --git a/src/purchasing/purchasing.pro b/src/purchasing/purchasing.pro
index 8fdc2d2..56a2cf2 100644
--- a/src/purchasing/purchasing.pro
+++ b/src/purchasing/purchasing.pro
@@ -1,8 +1,6 @@
TARGET = QtPurchasing
QT = core
-load(qt_module)
-
QMAKE_TARGET_PRODUCT = "Qt Purchasing (Qt $$QT_VERSION)"
QMAKE_TARGET_DESCRIPTION = "Purchasing component for Qt."
@@ -17,3 +15,5 @@ HEADERS += \
$$PWD/qtpurchasingglobal.h
include(inapppurchase/inapppurchase.pri)
+
+load(qt_module)