Compile with Qt 5.

Add either QtDeclarative (Qt 4) or QtQuick1 (Qt 5) to QT.
Mixing them leads to problems with include paths and linking.

Change-Id: I188240641216ee227931a7be2105bc4838385c79
Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
This commit is contained in:
Friedemann Kleint
2012-03-13 17:12:53 +01:00
parent 1ca4cad613
commit 489feeae15
9 changed files with 44 additions and 12 deletions

View File

@@ -1,7 +1,12 @@
TEMPLATE = lib
TARGET = QmlProjectManager
QT += declarative network
QT += network
greaterThan(QT_MAJOR_VERSION, 4) {
QT += quick1
} else {
QT += declarative
}
include(../../qtcreatorplugin.pri)
include(qmlprojectmanager_dependencies.pri)