mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
qt: The videooverlay example requires at least C++11
... and clang requires this to be specified on the commandline while gcc nowadays defaults to C++11 or even newer.
This commit is contained in:
parent
091717d6ca
commit
7de834bc36
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ if HAVE_QT
|
|||
EXAMPLES += qt-videooverlay
|
||||
|
||||
qt_videooverlay_SOURCES = qt-videooverlay.cpp
|
||||
qt_videooverlay_CXXFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CXXFLAGS) $(X_CFLAGS) $(QT_CFLAGS) -fPIC
|
||||
qt_videooverlay_CXXFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CXXFLAGS) $(X_CFLAGS) $(QT_CFLAGS) -fPIC -std=c++11
|
||||
qt_videooverlay_LDADD = \
|
||||
$(top_builddir)/gst-libs/gst/video/libgstvideo-$(GST_API_VERSION).la \
|
||||
$(GST_LIBS) $(X_LIBS) $(LIBM) $(QT_LIBS)
|
||||
|
|
Loading…
Reference in a new issue