Add support for qscxmlc and state chart files to project managers

Change-Id: Ic0ac337ea90310239a2b1e681083f2201a76afe8
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
Ulf Hermann
2016-01-15 16:00:09 +01:00
parent e1da5418e9
commit 4a5213926b
8 changed files with 31 additions and 2 deletions

View File

@@ -565,6 +565,8 @@ ProjectExplorer::FileType QbsGroupNode::fileType(const qbs::GroupData &group,
return ProjectExplorer::ResourceType;
if (artifact.fileTags().contains(QLatin1String("ui")))
return ProjectExplorer::FormType;
if (artifact.fileTags().contains(QLatin1String("scxml")))
return ProjectExplorer::StateChartType;
return ProjectExplorer::UnknownFileType;
}