Skip to content

Commit

Permalink
Merge pull request #697 from QuasarApp/qt6.3
Browse files Browse the repository at this point in the history
Added support the QtShaderToolsModule
  • Loading branch information
EndrII authored May 26, 2022
2 parents 96fde6c + 3618cfc commit 2c028ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Deploy/deploycore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ QtModuleEntry DeployCore::qtModuleEntries[] = {
{ QtTextToSpeechModule, "texttospeech", "QtXTextToSpeech", nullptr },
{ QtSerialBusModule, "serialbus", "QtXSerialBus", nullptr },
{ QtWebViewModule, "webview", "QtXWebView", nullptr },
{ QtVirtualKeyboard, "virtualkeyboard", "QtXVirtualKeyboard", nullptr }
{ QtVirtualKeyboard, "virtualkeyboard", "QtXVirtualKeyboard", nullptr },
{ QtShaderToolsModule, "shadertools", "QtXShaderTools", nullptr }
};

DeployCore::QtModule DeployCore::getQtModule(const QString& path) {
Expand Down
3 changes: 2 additions & 1 deletion Deploy/deploycore.h
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@ class DEPLOYSHARED_EXPORT DeployCore
QtVirtualKeyboard = 0x0010000000000000,
// Qt6
QtOpenGLWidgetsModule = 0x0010000000000000,
QtSvgWidgetsModule = 0x0020000000000000
QtSvgWidgetsModule = 0x0020000000000000,
QtShaderToolsModule = 0x0040000000000000
};

DeployCore() = delete;
Expand Down

0 comments on commit 2c028ce

Please sign in to comment.