File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ QSet<QString> ModulesQt6_5::qmlLibs(const QString &distDir) const {
22
22
" ./" + distDir + " /qml/QtQml/libqmlplugin.so" ,
23
23
" ./" + distDir + " /qml/QtQml/plugins.qmltypes"
24
24
}
25
- );
25
+ );
26
26
27
27
#ifdef Q_OS_WIN
28
28
Tree += utils.createTree (
@@ -43,6 +43,7 @@ QSet<QString> ModulesQt6_5::qmlLibs(const QString &distDir) const {
43
43
" ./" + distDir + " /qml/QtQml/Base/plugins.qmltypes" ,
44
44
" ./" + distDir + " /qml/QtQml/Base/qmldir" ,
45
45
" ./" + distDir + " /qml/QtQml/libqmlmetaplugin.so" ,
46
+ " ./" + distDir + " /plugins/networkinformation/libqglib.so" ,
46
47
" ./" + distDir + " /qml/QtQuick/Controls/Material/impl/RoundedElevationEffect.qml"
47
48
}
48
49
);
@@ -77,6 +78,7 @@ QSet<QString> ModulesQt6_5::qtLibs(const QString &distDir) const {
77
78
" ./" + distDir + " /plugins/platforms/qdirect2d.dll" ,
78
79
}
79
80
);
81
+
80
82
#endif
81
83
82
84
return Tree;
@@ -88,5 +90,14 @@ QSet<QString> ModulesQt6_5::qtWebEngineWidgets(const QString &distDir) const
88
90
89
91
auto Tree = ModulesQt6_4::qtWebEngineWidgets (distDir);
90
92
93
+ #ifdef Q_OS_LINUX
94
+ Tree += utils.createTree (
95
+ {
96
+ " ./" + distDir + " /plugins/networkinformation/libqglib.so" ,
97
+ }
98
+ );
99
+ #endif
100
+
101
+
91
102
return Tree;
92
103
}
You can’t perform that action at this time.
0 commit comments