Skip to content

Commit 9510488

Browse files
authored
Merge pull request #792 from QuasarApp/fix_tests
fix linux tests
2 parents eb3a750 + 0463e33 commit 9510488

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

tests/modules/modulesqt6_5.cpp

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ QSet<QString> ModulesQt6_5::qmlLibs(const QString &distDir) const {
2222
"./" + distDir + "/qml/QtQml/libqmlplugin.so",
2323
"./" + distDir + "/qml/QtQml/plugins.qmltypes"
2424
}
25-
);
25+
);
2626

2727
#ifdef Q_OS_WIN
2828
Tree += utils.createTree(
@@ -43,6 +43,7 @@ QSet<QString> ModulesQt6_5::qmlLibs(const QString &distDir) const {
4343
"./" + distDir + "/qml/QtQml/Base/plugins.qmltypes",
4444
"./" + distDir + "/qml/QtQml/Base/qmldir",
4545
"./" + distDir + "/qml/QtQml/libqmlmetaplugin.so",
46+
"./" + distDir + "/plugins/networkinformation/libqglib.so",
4647
"./" + distDir + "/qml/QtQuick/Controls/Material/impl/RoundedElevationEffect.qml"
4748
}
4849
);
@@ -77,6 +78,7 @@ QSet<QString> ModulesQt6_5::qtLibs(const QString &distDir) const {
7778
"./" + distDir + "/plugins/platforms/qdirect2d.dll",
7879
}
7980
);
81+
8082
#endif
8183

8284
return Tree;
@@ -88,5 +90,14 @@ QSet<QString> ModulesQt6_5::qtWebEngineWidgets(const QString &distDir) const
8890

8991
auto Tree = ModulesQt6_4::qtWebEngineWidgets(distDir);
9092

93+
#ifdef Q_OS_LINUX
94+
Tree += utils.createTree(
95+
{
96+
"./" + distDir + "/plugins/networkinformation/libqglib.so",
97+
}
98+
);
99+
#endif
100+
101+
91102
return Tree;
92103
}

0 commit comments

Comments
 (0)