QmlProjectExporter: Add newline after bigResources statement

Change-Id: I4461e81a694f6f49c5e1c0c6451e23b3f0fa321e
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Knud Dollereder
2024-12-13 15:41:59 +01:00
parent 95ebded060
commit 7a9953c6d3
2 changed files with 3 additions and 1 deletions

View File

@@ -30,7 +30,8 @@ qt6_add_resources(%1 %2
PREFIX "%3"
VERSION 1.0
FILES %4
))";
)
)";
CMakeWriter::Ptr CMakeWriter::create(CMakeGenerator *parent)
{

View File

@@ -119,6 +119,7 @@ void CMakeWriterV0::writeModuleCMakeFile(const NodePtr &node, const NodePtr &roo
}
content.append(bigResources);
content.append("\n");
if (node->type == Node::Type::App) {
writeToFile = node->dir.pathAppended("qmlModules");