Commit bbf16bd9 authored by Richard Moe Gustavsen's avatar Richard Moe Gustavsen Committed by The Qt Project
Browse files

Let svg plugins extend svg module


svg plugins are by default not linked together with
QtGui since its usage is rare. But when the pro file
contains Qt += svg, then its the opposite; The
application is likely to need the svg plugins.

Many of the examples shipped with the SDK fails building
on iOS (e.g accelbubble) because of this.

Change-Id: I83873d5405fde2b3d38e836057d55fcc2ceb9b6c
Reviewed-by: default avatarOswald Buddenhagen <oswald.buddenhagen@digia.com>
Showing with 2 additions and 2 deletions
TARGET = qsvgicon
PLUGIN_TYPE = iconengines
PLUGIN_EXTENDS = -
PLUGIN_EXTENDS = svg
PLUGIN_CLASS_NAME = QSvgIconPlugin
load(qt_plugin)
......
TARGET = qsvg
PLUGIN_TYPE = imageformats
PLUGIN_EXTENDS = -
PLUGIN_EXTENDS = svg
PLUGIN_CLASS_NAME = QSvgPlugin
load(qt_plugin)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment