summaryrefslogtreecommitdiff
path: root/recipes
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2023-05-31 01:52:50 +0530
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2023-06-07 19:48:55 +0000
commitecd4abfab596e27928ebd3fa58f74738cf2e5dc0 (patch)
treed0929d7fc1098b4bf768b622562303ef68b019fd /recipes
parent555eee0be4caf06799cd55941259f0c8242d8ed9 (diff)
Add support for building the qml6 plugin on Windows
Also, switch qt6 detection from `QMAKE` to `QMAKE6` so that both qt5 and qt6 can be built at the same time. Note that this is mostly only useful when building static plugins, because you cannot load both Qt5 and Qt6 into the same executable. Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1200>
Diffstat (limited to 'recipes')
-rw-r--r--recipes/gst-plugins-good-1.0.recipe2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/gst-plugins-good-1.0.recipe b/recipes/gst-plugins-good-1.0.recipe
index cd892f77..6f2f7462 100644
--- a/recipes/gst-plugins-good-1.0.recipe
+++ b/recipes/gst-plugins-good-1.0.recipe
@@ -257,7 +257,7 @@ class Recipe(custom.GStreamer):
# Enable qt6 plugin if possible and selected
can_enable_qt6 = False
- if self.config.target_platform in (Platform.LINUX, Platform.DARWIN):
+ if self.config.target_platform in (Platform.LINUX, Platform.DARWIN, Platform.WINDOWS):
can_enable_qt6 = True
if can_enable_qt6:
self.enable_plugin('qml6', 'qt6', 'qt6', option='qt6')