mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
qmlglsink: fix compilation with Qt >= 5.5 on Windows
As of Qt >= 5.5, qmake do not link to opengl32 by default anymore. This commit adds opengl32.lib to the .pro file so that the plugin can be build using QtCreator on Windows.
This commit is contained in:
parent
e40072630c
commit
0375e53225
1 changed files with 2 additions and 0 deletions
|
@ -21,6 +21,8 @@ android:DEFINES += HAVE_QT_ANDROID
|
|||
win32:DEFINES += HAVE_QT_WIN32
|
||||
macx:DEFINES += HAVE_QT_MAC
|
||||
|
||||
versionAtLeast(QT_VERSION, "5.5"):win32-msvc: LIBS += opengl32.lib
|
||||
|
||||
SOURCES += \
|
||||
gstplugin.cc \
|
||||
gstqtglutility.cc \
|
||||
|
|
Loading…
Reference in a new issue