mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-13 03:46:34 +00:00
8227135f3b
Tests and documentation will follow separately. The mixer elements in the opengl plugin need to stay in -bad for now since they use GstVideoAggregator. https://bugzilla.gnome.org/show_bug.cgi?id=754094
16 lines
451 B
Makefile
16 lines
451 B
Makefile
noinst_PROGRAMS = 3dvideo
|
|
|
|
noinst_HEADERS = mviewwidget.h
|
|
|
|
3dvideo_SOURCES = mviewwidget.c main.cpp
|
|
|
|
3dvideo_CXXFLAGS=$(GST_CXXFLAGS)
|
|
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)
|