mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
02d46b867a
gcc 8 checks more cases in the "parentheses" checks, and unfortunately upstream gtk headers fails with that warning. Make that warning non-fatal
12 lines
448 B
Makefile
12 lines
448 B
Makefile
noinst_PROGRAMS = switchvideooverlay
|
|
|
|
switchvideooverlay_SOURCES = main.cpp
|
|
|
|
switchvideooverlay_CXXFLAGS=\
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_CXXFLAGS) \
|
|
$(GL_CFLAGS) $(GTK_CFLAGS) $(X_CFLAGS) -Wno-error=parentheses
|
|
switchvideooverlay_LDADD=../libgstgtkhelper.la \
|
|
$(top_builddir)/gst-libs/gst/video/libgstvideo-@GST_API_VERSION@.la \
|
|
$(top_builddir)/gst-libs/gst/gl/libgstgl-@GST_API_VERSION@.la \
|
|
$(GST_LIBS) $(GL_LIBS) $(GTK_LIBS) $(X_LIBS)
|
|
|