forked from qt-creator/qt-creator
QmlDesigner: Add the .qmlproject file to the .qmlrc files
Instead not adding .qtds, .db-shm, .db-wal. Task-number: QDS-6394 Change-Id: Ie3089a707bd7d29bdbf5795c676ff38e09f59e41 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
@@ -148,8 +148,7 @@ QStringList GenerateResource::getFileList(const QList<ResourceFile> &fileNames)
|
||||
|
||||
bool skipSuffix(const QString &fileName)
|
||||
{
|
||||
const QStringList suffixes = {".qmlproject",
|
||||
".pri",
|
||||
const QStringList suffixes = {".pri",
|
||||
".pro",
|
||||
".user",
|
||||
".qrc",
|
||||
@@ -158,7 +157,10 @@ bool skipSuffix(const QString &fileName)
|
||||
".db",
|
||||
".tmp",
|
||||
".TMP",
|
||||
".metainfo"};
|
||||
".metainfo",
|
||||
".qtds",
|
||||
".db-shm",
|
||||
".db-wal"};
|
||||
|
||||
for (const auto &suffix : suffixes)
|
||||
if (fileName.endsWith(suffix))
|
||||
|
Reference in New Issue
Block a user