After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 761260 - qml: add Windows support
qml: add Windows support
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-bad
unspecified
Other Windows
: Normal enhancement
: 1.8.3
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2016-01-28 16:35 UTC by gennadii.kurabko
Modified: 2016-08-15 17:10 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
qmlglsink: add win32 support (7.76 KB, patch)
2016-06-21 13:47 UTC, Matthew Waters (ystreet00)
committed Details | Review

Description gennadii.kurabko 2016-01-28 16:35:57 UTC
Add support for Windows to QML plugin.

(in case I will succeed with a patch, will add it)
Comment 1 Matthew Waters (ystreet00) 2016-06-21 13:47:18 UTC
Created attachment 330133 [details] [review]
qmlglsink: add win32 support

This implements qmlglsink support.  Unfortunately, it's out of band from the normal ./configure; make; make install set of commands instead relying on qmake to generate the requires VS project to be able to build correctly against a set of Qt binaries the will work.
Comment 2 Matthew Waters (ystreet00) 2016-06-22 04:35:50 UTC
commit ba69afdc475f1fd41b2fb3141ada2531f190cf02
Author: Matthew Waters <matthew@centricular.com>
Date:   Thu Jun 16 15:13:02 2016 +1000

    qmlglsink: add win32 support
    
    The current state of c++ ABI's on Window's and Gst's/Qt's conflicting
    mingw builds means that we cannot use mingw for building the qt plugin.
    
    Instead, a qmake .pro file is provided that is expected to be used with the
    msvc binaries provided by Qt like so:
    
    (with the PATH environment variable containing the path to the qt biniaries
    and PKG_CONFIG_PATH containing the path to GStreamer modules)
    cd /path/to/sources/gst-plugins-bad/ext/qt
    qmake -tp vc
    
    Then open the resulting VS project and build the library.  Then
    
    cp debug/libgstqtsink.dll /path/to/prefix/lib/gstreamer-1.0/libgstqtsink.cll
    
    https://bugzilla.gnome.org/show_bug.cgi?id=761260