gstreamer/tests/examples/gl/gtk/3dvideo/Makefile.am
Edward Hervey 02d46b867a examples: Disable a specific warning
gcc 8 checks more cases in the "parentheses" checks, and unfortunately
upstream gtk headers fails with that warning.

Make that warning non-fatal
2018-05-11 09:44:58 +02:00

16 lines
474 B
Makefile

noinst_PROGRAMS = 3dvideo
noinst_HEADERS = mviewwidget.h
3dvideo_SOURCES = mviewwidget.c main.cpp
3dvideo_CXXFLAGS=$(GST_CXXFLAGS) -Wno-error=parentheses
3dvideo_CFLAGS=$(GST_CFLAGS)
3dvideo_CPPFLAGS=\
$(GST_PLUGINS_BASE_CFLAGS) \
$(GL_CFLAGS) $(GTK_CFLAGS)
3dvideo_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)