mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-05-08 15:39:35 +00:00
change libqglib location in linux tests
This commit is contained in:
parent
58a8e6f061
commit
0463e33103
@ -22,7 +22,7 @@ QSet<QString> ModulesQt6_5::qmlLibs(const QString &distDir) const {
|
|||||||
"./" + distDir + "/qml/QtQml/libqmlplugin.so",
|
"./" + distDir + "/qml/QtQml/libqmlplugin.so",
|
||||||
"./" + distDir + "/qml/QtQml/plugins.qmltypes"
|
"./" + distDir + "/qml/QtQml/plugins.qmltypes"
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
Tree += utils.createTree(
|
Tree += utils.createTree(
|
||||||
@ -43,6 +43,7 @@ QSet<QString> ModulesQt6_5::qmlLibs(const QString &distDir) const {
|
|||||||
"./" + distDir + "/qml/QtQml/Base/plugins.qmltypes",
|
"./" + distDir + "/qml/QtQml/Base/plugins.qmltypes",
|
||||||
"./" + distDir + "/qml/QtQml/Base/qmldir",
|
"./" + distDir + "/qml/QtQml/Base/qmldir",
|
||||||
"./" + distDir + "/qml/QtQml/libqmlmetaplugin.so",
|
"./" + distDir + "/qml/QtQml/libqmlmetaplugin.so",
|
||||||
|
"./" + distDir + "/plugins/networkinformation/libqglib.so",
|
||||||
"./" + distDir + "/qml/QtQuick/Controls/Material/impl/RoundedElevationEffect.qml"
|
"./" + distDir + "/qml/QtQuick/Controls/Material/impl/RoundedElevationEffect.qml"
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
@ -77,12 +78,6 @@ QSet<QString> ModulesQt6_5::qtLibs(const QString &distDir) const {
|
|||||||
"./" + distDir + "/plugins/platforms/qdirect2d.dll",
|
"./" + distDir + "/plugins/platforms/qdirect2d.dll",
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
#else
|
|
||||||
Tree += utils.createTree(
|
|
||||||
{
|
|
||||||
"./" + distDir + "/plugins/networkinformation/libqglib.so",
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -95,5 +90,14 @@ QSet<QString> ModulesQt6_5::qtWebEngineWidgets(const QString &distDir) const
|
|||||||
|
|
||||||
auto Tree = ModulesQt6_4::qtWebEngineWidgets(distDir);
|
auto Tree = ModulesQt6_4::qtWebEngineWidgets(distDir);
|
||||||
|
|
||||||
|
#ifdef Q_OS_LINUX
|
||||||
|
Tree += utils.createTree(
|
||||||
|
{
|
||||||
|
"./" + distDir + "/plugins/networkinformation/libqglib.so",
|
||||||
|
}
|
||||||
|
);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
return Tree;
|
return Tree;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user