-
-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #781 from QuasarApp/task_780
Qt 6.6
- Loading branch information
Showing
28 changed files
with
193 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule QuasarAppLib
updated
5 files
+5 −0 | CMakeLists.txt | |
+101 −25 | locales.cpp | |
+33 −4 | locales.h | |
+18 −16 | params.cpp | |
+4 −1 | params.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/* | ||
* 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_6.h" | ||
|
||
ModulesQt6_6::ModulesQt6_6() | ||
{ | ||
|
||
} | ||
|
||
QSet<QString> ModulesQt6_6::qmlLibs(const QString &distDir) const { | ||
TestUtils utils; | ||
auto Tree = ModulesQt6_5::qmlLibs(distDir); | ||
|
||
#ifdef Q_OS_WIN | ||
|
||
#else | ||
|
||
#endif | ||
|
||
return Tree; | ||
} | ||
|
||
QSet<QString> ModulesQt6_6::qmlVirtualKeyBoadrLibs(const QString &distDir) const { | ||
|
||
TestUtils utils; | ||
|
||
auto Tree = ModulesQt6_5::qmlVirtualKeyBoadrLibs(distDir); | ||
return Tree; | ||
} | ||
|
||
QSet<QString> ModulesQt6_6::qtWebEngine(const QString &distDir) const | ||
{ | ||
TestUtils utils; | ||
|
||
auto Tree = ModulesQt6_5::qtWebEngine(distDir); | ||
|
||
#ifdef Q_OS_WIN | ||
Tree += utils.createTree( | ||
{ | ||
"./" + distDir + "/resources/v8_context_snapshot.bin" | ||
|
||
} | ||
); | ||
#else | ||
Tree += utils.createTree( | ||
{ | ||
"./" + distDir + "/resources/v8_context_snapshot.bin", | ||
"./" + distDir + "/lib/libQt6WebChannelQuick.so", | ||
"./" + distDir + "/qml/QtWebChannel/libwebchannelplugin.so", | ||
"./" + distDir + "/qml/QtWebChannel/libwebchannelquickplugin.so", | ||
|
||
} | ||
); | ||
#endif | ||
|
||
return Tree; | ||
} | ||
|
||
QSet<QString> ModulesQt6_6::qtLibs(const QString &distDir) const { | ||
auto Tree = ModulesQt6_5::qtLibs(distDir); | ||
TestUtils utils; | ||
|
||
|
||
return Tree; | ||
} | ||
|
||
QSet<QString> ModulesQt6_6::qtWebEngineWidgets(const QString &distDir) const | ||
{ | ||
TestUtils utils; | ||
|
||
auto Tree = ModulesQt6_5::qtWebEngineWidgets(distDir); | ||
#ifdef Q_OS_WIN | ||
Tree += utils.createTree( | ||
{ | ||
"./" + distDir + "/resources/v8_context_snapshot.bin" | ||
|
||
} | ||
); | ||
#else | ||
Tree += utils.createTree( | ||
{ | ||
"./" + distDir + "/resources/v8_context_snapshot.bin" | ||
} | ||
); | ||
#endif | ||
return Tree; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
#ifndef MODULESQT6_6_H | ||
#define MODULESQT6_6_H | ||
|
||
#include "modulesqt6_5.h" | ||
|
||
class ModulesQt6_6: public ModulesQt6_5 | ||
{ | ||
public: | ||
ModulesQt6_6(); | ||
QSet<QString> qmlLibs(const QString &distDir = DISTRO_DIR) const override; | ||
QSet<QString> qmlVirtualKeyBoadrLibs(const QString &distDir = DISTRO_DIR) const override; | ||
QSet<QString> qtWebEngine(const QString &distDir = DISTRO_DIR) const override; | ||
QSet<QString> qtWebEngineWidgets(const QString &distDir = DISTRO_DIR) const override; | ||
QSet<QString> qtLibs(const QString &distDir = DISTRO_DIR) const override; | ||
}; | ||
|
||
#endif // MODULESQT6_5_H |
Oops, something went wrong.