summaryrefslogtreecommitdiff
path: root/src/plugins
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-02-12 16:46:17 +0100
committerOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-02-25 16:55:56 +0000
commit36a22f2c48f7df34c71b2177ff9c8b65daef614c (patch)
treee21cb3e7d1bf4011543a6cf182b305443138b63f /src/plugins
parenta9ac71a443260de66f720f0184646847b03fcb46 (diff)
downloadqtsvg-36a22f2c48f7df34c71b2177ff9c8b65daef614c.tar.gz
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: I20b0d2c018e3adce10629aee3fa055df437df71c Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/iconengines/svgiconengine/svgiconengine.pro10
-rw-r--r--src/plugins/imageformats/svg/svg.pro10
2 files changed, 10 insertions, 10 deletions
diff --git a/src/plugins/iconengines/svgiconengine/svgiconengine.pro b/src/plugins/iconengines/svgiconengine/svgiconengine.pro
index 516142b..eb6847b 100644
--- a/src/plugins/iconengines/svgiconengine/svgiconengine.pro
+++ b/src/plugins/iconengines/svgiconengine/svgiconengine.pro
@@ -1,12 +1,12 @@
TARGET = qsvgicon
-PLUGIN_TYPE = iconengines
-PLUGIN_EXTENDS = svg
-PLUGIN_CLASS_NAME = QSvgIconPlugin
-load(qt_plugin)
-
HEADERS += qsvgiconengine.h
SOURCES += main.cpp \
qsvgiconengine.cpp
OTHER_FILES += qsvgiconengine.json
QT += svg core-private gui-private
+
+PLUGIN_TYPE = iconengines
+PLUGIN_EXTENDS = svg
+PLUGIN_CLASS_NAME = QSvgIconPlugin
+load(qt_plugin)
diff --git a/src/plugins/imageformats/svg/svg.pro b/src/plugins/imageformats/svg/svg.pro
index ce1881f..9db6a9a 100644
--- a/src/plugins/imageformats/svg/svg.pro
+++ b/src/plugins/imageformats/svg/svg.pro
@@ -1,11 +1,11 @@
TARGET = qsvg
-PLUGIN_TYPE = imageformats
-PLUGIN_EXTENDS = svg
-PLUGIN_CLASS_NAME = QSvgPlugin
-load(qt_plugin)
-
HEADERS += qsvgiohandler.h
SOURCES += main.cpp \
qsvgiohandler.cpp
QT += svg
+
+PLUGIN_TYPE = imageformats
+PLUGIN_EXTENDS = svg
+PLUGIN_CLASS_NAME = QSvgPlugin
+load(qt_plugin)