mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 20:51:13 +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
16 lines
474 B
Makefile
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)
|