From: Kent Hansen Date: Thu, 12 Jan 2012 06:34:41 +0000 (+0100) Subject: Fix linking error X-Git-Tag: qt-v5.0.0-alpha1~88 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d9ffcb468824b2d2199c202c755a4faeea7c77fb;p=profile%2Fivi%2Fqtwayland.git Fix linking error Missing "QT += declarative" caused the Q_DECLARATIVE_EXPORT macro to be defined incorrectly, so the linker would complain about missing symbol qdeclarativeelement_destructor. Change-Id: I9638377ddf9478b452362f5ee8c86c0e7b844fc0 Sanity-Review: Qt Sanity Bot Reviewed-by: Jørgen Lind --- diff --git a/src/compositor/compositor_api/compositor_api.pri b/src/compositor/compositor_api/compositor_api.pri index 916fc30..9223752 100644 --- a/src/compositor/compositor_api/compositor_api.pri +++ b/src/compositor/compositor_api/compositor_api.pri @@ -18,7 +18,7 @@ contains(QT_CONFIG, quick) { DEFINES += QT_COMPOSITOR_QUICK - QT += quick + QT += declarative quick QT += quick-private gui-private }