From d42c7ccd72f6b818637c0ad7cfdbfd594ac7f95c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristi=C3=A1n=20Maureira-Fredes?= Date: Thu, 7 Nov 2024 14:49:52 +0100 Subject: 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 --- build_scripts/wheel_files.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'build_scripts/wheel_files.py') 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") -- cgit v1.2.3