Wizards: qml project support is desktop only

We support (pure) qml projects only on the desktop.

Change-Id: Ib68d8ddab053a2b4e4b60cc07e9408eff0e27d63
Reviewed-by: Alessandro Portale <alessandro.portale@nokia.com>
Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
This commit is contained in:
Thomas Hartmann
2012-02-23 12:14:07 +01:00
parent 6e6e756d01
commit fd367ec8ae
3 changed files with 3 additions and 1 deletions

View File

@@ -68,7 +68,7 @@ QmlProjectApplicationWizard::~QmlProjectApplicationWizard()
Core::FeatureSet QmlProjectApplicationWizard::requiredFeatures() const
{
return Core::Feature(QtSupport::Constants::FEATURE_QT_QUICK);
return Core::Feature(QtSupport::Constants::FEATURE_QT_QUICK) | Core::Feature(QtSupport::Constants::FEATURE_QMLPROJECT);
}
Core::BaseFileWizardParameters QmlProjectApplicationWizard::parameters()