mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-28 18:54:33 +00:00
63 lines
1.5 KiB
C++
63 lines
1.5 KiB
C++
|
/*
|
||
|
* Copyright (C) 2023-2023 QuasarApp.
|
||
|
* Distributed under the lgplv3 software license, see the accompanying
|
||
|
* Everyone is permitted to copy and distribute verbatim copies
|
||
|
* of this license document, but changing it is not allowed.
|
||
|
*/
|
||
|
|
||
|
#include "modulesqt6_5.h"
|
||
|
|
||
|
ModulesQt6_5::ModulesQt6_5()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
QSet<QString> ModulesQt6_5::qmlLibs(const QString &distDir) const {
|
||
|
TestUtils utils;
|
||
|
auto Tree = ModulesQt6_4::qmlLibs(distDir);
|
||
|
|
||
|
Tree -= utils.createTree(
|
||
|
{
|
||
|
"./" + distDir + "/qml/QtQml/libqmlplugin.so",
|
||
|
"./" + distDir + "/qml/QtQml/plugins.qmltypes"
|
||
|
}
|
||
|
);
|
||
|
|
||
|
Tree += utils.createTree(
|
||
|
{
|
||
|
"./" + distDir + "/qml/QtQml/Base/libqmlplugin.so",
|
||
|
"./" + distDir + "/qml/QtQml/Base/plugins.qmltypes",
|
||
|
"./" + distDir + "/qml/QtQml/Base/qmldir",
|
||
|
"./" + distDir + "/qml/QtQml/libqmlmetaplugin.so",
|
||
|
"./" + distDir + "/qml/QtQuick/Controls/Material/impl/RoundedElevationEffect.qml"
|
||
|
}
|
||
|
);
|
||
|
|
||
|
return Tree;
|
||
|
}
|
||
|
|
||
|
QSet<QString> ModulesQt6_5::qmlVirtualKeyBoadrLibs(const QString &distDir) const {
|
||
|
|
||
|
TestUtils utils;
|
||
|
|
||
|
auto Tree = ModulesQt6_4::qmlVirtualKeyBoadrLibs(distDir);
|
||
|
return Tree;
|
||
|
}
|
||
|
|
||
|
QSet<QString> ModulesQt6_5::qtWebEngine(const QString &distDir) const
|
||
|
{
|
||
|
TestUtils utils;
|
||
|
|
||
|
auto Tree = ModulesQt6_4::qtWebEngine(distDir);
|
||
|
return Tree;
|
||
|
}
|
||
|
|
||
|
QSet<QString> ModulesQt6_5::qtWebEngineWidgets(const QString &distDir) const
|
||
|
{
|
||
|
TestUtils utils;
|
||
|
|
||
|
auto Tree = ModulesQt6_4::qtWebEngineWidgets(distDir);
|
||
|
|
||
|
return Tree;
|
||
|
}
|