aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts/wheel_files.py
diff options
context:
space:
mode:
authorCristián Maureira-Fredes <cristian.maureira-fredes@qt.io>2024-11-07 14:49:52 +0100
committerCristián Maureira-Fredes <cristian.maureira-fredes@qt.io>2024-11-07 15:54:45 +0100
commitd42c7ccd72f6b818637c0ad7cfdbfd594ac7f95c (patch)
treee19ecee70ba9b5850c657205188d6ada0760e31e /build_scripts/wheel_files.py
parent95b5ac1abc80be0ea8df7137637d510404bfef9f (diff)
build: make FluentWinUI3 available for Linux and macOS
The style needs to be available for all supported platforms, not only Windows. We were still deploying the plugin, and when trying to find the library for the style, it was affecting the deployment of applications. Change-Id: If8c0b08627beddf59cfb682cc2594ba06aca31f2 Pick-to: 6.8 Fixes: PYSIDE-2910 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'build_scripts/wheel_files.py')
-rw-r--r--build_scripts/wheel_files.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/build_scripts/wheel_files.py b/build_scripts/wheel_files.py
index 9584949da..f94875998 100644
--- a/build_scripts/wheel_files.py
+++ b/build_scripts/wheel_files.py
@@ -600,9 +600,11 @@ def module_QtQuickControls2() -> ModuleData:
data.qtlib.append("libQt6QuickControls2MaterialStyleImpl")
data.qtlib.append("libQt6QuickControls2Universal")
data.qtlib.append("libQt6QuickControls2UniversalStyleImpl")
+ # FluentWinUI3 Style is available for all platforms, even if it
+ # was originally intended for Windows.
+ data.qtlib.append("libQt6QuickControls2FluentWinUI3StyleImpl")
if sys.platform == "win32":
data.qtlib.append("libQt6QuickControls2WindowsStyleImpl")
- data.qtlib.append("libQt6QuickControls2FluentWinUI3StyleImpl")
elif sys.platform == "darwin":
data.qtlib.append("libQt6QuickControls2IOSStyleImpl")
data.qtlib.append("libQt6QuickControls2MacOSStyleImpl")